Skip to content

Commit 6a105d8

Browse files
committed
Remove OMP_NUM_THREADS workaround - using CI env check instead
1 parent c1cf530 commit 6a105d8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ jobs:
3838
3939
- name: Run unit tests
4040
run: |
41-
OMP_NUM_THREADS=1 pytest tests/unit -v -m "not requires_casa"
41+
pytest tests/unit -v -m "not requires_casa"
42+
4243
- name: Run integration tests
4344
run: |
44-
OMP_NUM_THREADS=1 pytest tests/integration -v -m "not requires_casa"
45+
pytest tests/integration -v -m "not requires_casa"
4546
4647
code-quality:
4748
name: Code Quality

0 commit comments

Comments
 (0)