Skip to content

Commit 29bf866

Browse files
committed
Tests not parallel, weird data loading.
1 parent 4dc705d commit 29bf866

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci_run_tests_deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
python -m pip install --upgrade setuptools
3737
pip install numpy==${{ matrix.numpy-version }}
3838
pip install flake8 pytest#
39-
pip install "pytest-xdist"
39+
# pip install "pytest-xdist"
4040
if [ -f requirements_tests.txt ]; then pip install -r requirements_tests.txt; fi
4141
- name: Build package
4242
run: python -m build --wheel
4343
- name: Install Package
4444
run: pip install dist/*
4545
- name: Run tests with pytest
46-
run: pytest tests -n auto
46+
run: pytest tests #-n auto
4747

.github/workflows/ci_run_tests_os.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
python -m pip install --upgrade setuptools
3333
pip install numpy
3434
pip install flake8 pytest
35-
pip install "pytest-xdist"
35+
# pip install "pytest-xdist"
3636
if [ -f requirements_tests.txt ]; then pip install -r requirements_tests.txt; fi
3737
- name: Build package
3838
run: python -m build --wheel
3939
- name: Install Package
4040
run: pip install dist/*
4141
- name: Run tests with pytest
42-
run: pytest tests -n auto
42+
run: pytest tests #-n auto
4343

0 commit comments

Comments
 (0)