diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index ba0413ef..94600371 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -106,7 +106,7 @@ jobs: conda config --show-sources conda config --show conda info -a - conda install -c conda-forge -c gimli ${{ matrix.case.conda }} pytest pytest-cov pytest-console-scripts coveralls flake8 setuptools-scm + conda install -c gimli -c conda-forge ${{ matrix.case.conda }} pytest pytest-cov pytest-console-scripts coveralls flake8 setuptools-scm - name: Conda list shell: bash -l {0} diff --git a/tests/test_cli.py b/tests/cli.py similarity index 100% rename from tests/test_cli.py rename to tests/cli.py diff --git a/tests/test_core.py b/tests/core.py similarity index 100% rename from tests/test_core.py rename to tests/core.py diff --git a/tests/test_electrodes.py b/tests/electrodes.py similarity index 100% rename from tests/test_electrodes.py rename to tests/electrodes.py diff --git a/tests/test_fields.py b/tests/fields.py similarity index 100% rename from tests/test_fields.py rename to tests/fields.py diff --git a/tests/test_io.py b/tests/io.py similarity index 100% rename from tests/test_io.py rename to tests/io.py diff --git a/tests/test_maps.py b/tests/maps.py similarity index 100% rename from tests/test_maps.py rename to tests/maps.py diff --git a/tests/test_meshes.py b/tests/meshes.py similarity index 100% rename from tests/test_meshes.py rename to tests/meshes.py diff --git a/tests/test_models.py b/tests/models.py similarity index 100% rename from tests/test_models.py rename to tests/models.py diff --git a/tests/test_multiprocessing.py b/tests/multiprocessing.py similarity index 100% rename from tests/test_multiprocessing.py rename to tests/multiprocessing.py diff --git a/tests/test_simulations.py b/tests/simulations.py similarity index 100% rename from tests/test_simulations.py rename to tests/simulations.py diff --git a/tests/test_solver.py b/tests/solver.py similarity index 100% rename from tests/test_solver.py rename to tests/solver.py diff --git a/tests/test_surveys.py b/tests/surveys.py similarity index 100% rename from tests/test_surveys.py rename to tests/surveys.py diff --git a/tests/test_time.py b/tests/time.py similarity index 100% rename from tests/test_time.py rename to tests/time.py diff --git a/tests/test_utils.py b/tests/utils.py similarity index 100% rename from tests/test_utils.py rename to tests/utils.py