diff options
author | Frederick Muriuki Muriithi | 2023-07-11 14:34:21 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-07-11 14:38:05 +0300 |
commit | 88bc76842a2f35e35ca9d2727e2a09131ce7c0c1 (patch) | |
tree | 7e53074c089da16b0bd2c5d600725aac14d0624b | |
parent | d3a552ba2a98aa5bc8eb5190bc7ea32b7d3e636c (diff) | |
download | genenetwork3-88bc76842a2f35e35ca9d2727e2a09131ce7c0c1.tar.gz |
Revert "Skip tests broken by Python-3.10 temporarily"
This reverts commit f52247c15f3694f3dd5fd0fd79c3e15376137e07.
-rw-r--r-- | pytest.ini | 2 | ||||
-rw-r--r-- | tests/unit/db/test_species.py | 3 |
2 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ [pytest] -addopts = --strict-markers --ignore=tests/unit/auth +addopts = --strict-markers markers = slow unit_test diff --git a/tests/unit/db/test_species.py b/tests/unit/db/test_species.py index b7a95ce..073931e 100644 --- a/tests/unit/db/test_species.py +++ b/tests/unit/db/test_species.py @@ -12,7 +12,6 @@ class TestChromosomes(TestCase): """Test cases for fetching chromosomes""" @pytest.mark.unit_test - @pytest.mark.skip def test_get_chromosome_using_species_name(self): """Test that the chromosome is fetched using a species name""" db_mock = mock.MagicMock() @@ -29,7 +28,6 @@ class TestChromosomes(TestCase): ) @pytest.mark.unit_test - @pytest.mark.skip def test_get_chromosome_using_group_name(self): """Test that the chromosome is fetched using a group name""" db_mock = mock.MagicMock() @@ -46,7 +44,6 @@ class TestChromosomes(TestCase): ) @pytest.mark.unit_test - @pytest.mark.skip def test_get_all_species(self): """Test that species are fetched correctly""" db_mock = mock.MagicMock() |