Skip to content

Commit

Permalink
Downgrade to 32 cores for tests and lint
Browse files Browse the repository at this point in the history
I think 64 cores is costing us too much.
  • Loading branch information
seanh committed Oct 3, 2023
1 parent f884774 commit 0c4ef01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .cookiecutter/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"__hdev_project_type": "application",
"__copyright_year": "2017",
"__parallel_unit_tests": true,
"__tests_runner_type": "ubuntu-latest-64-cores",
"__lint_runner_type": "ubuntu-latest-64-cores"
"__tests_runner_type": "ubuntu-latest-32-cores",
"__lint_runner_type": "ubuntu-latest-32-cores"
}
}
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- run: python -m pip install 'tox<4'
- run: tox -e checkformatting
Lint:
runs-on: ubuntu-latest-64-cores
runs-on: ubuntu-latest-32-cores
steps:
- uses: actions/checkout@v3
- name: Install Python
Expand All @@ -61,7 +61,7 @@ jobs:
- run: python -m pip install 'tox<4'
- run: tox -e lint
Tests:
runs-on: ubuntu-latest-64-cores
runs-on: ubuntu-latest-32-cores
services:
postgres:
image: postgres:11.5-alpine
Expand Down

0 comments on commit 0c4ef01

Please sign in to comment.