We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41a5a63 commit f2aa6efCopy full SHA for f2aa6ef
5 files changed
.github/workflows/test.yml
@@ -68,6 +68,9 @@ jobs:
68
run: make install
69
70
- name: Run tests
71
+ env:
72
+ OPENBLAS_CORETYPE: Haswell
73
+ OMP_NUM_THREADS: 1
74
run: make test
75
76
- name: Upload coverage
Makefile
@@ -59,7 +59,7 @@ install: .venv .reports
59
# Tests
60
61
.pytest:
62
- poetry run pytest ${TESTS} --cov=${SOURCES} --cov-report=xml
+ poetry run pytest -n 0 ${TESTS} --cov=${SOURCES} --cov-report=xml
63
64
.doctest:
65
poetry run pytest --doctest-modules ${SOURCES} --ignore=rectools/tools/ann.py
0 commit comments