diff options
author | Frederick Muriuki Muriithi | 2022-02-14 06:56:32 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-02-17 06:37:30 +0300 |
commit | 74044f3c7985308b4996da3a52f91c5c20a19194 (patch) | |
tree | d86714b859b31cbbd1755522f8abd8eed16e321b /tests/unit/computations/test_diff.py | |
parent | 67f517aa0f44f55dc691ffd791bf22ef7af0b02c (diff) | |
download | genenetwork3-74044f3c7985308b4996da3a52f91c5c20a19194.tar.gz |
Use pytest's "mark" feature to categorise tests
Use pytest's `mark` feature to explicitly categorise the tests and run them
per category
Diffstat (limited to 'tests/unit/computations/test_diff.py')
-rw-r--r-- | tests/unit/computations/test_diff.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/computations/test_diff.py b/tests/unit/computations/test_diff.py index e4f5dde..128fb60 100644 --- a/tests/unit/computations/test_diff.py +++ b/tests/unit/computations/test_diff.py @@ -2,6 +2,8 @@ import unittest import os +import pytest + from gn3.computations.diff import generate_diff TESTDIFF = """3,4c3,4 @@ -19,6 +21,7 @@ TESTDIFF = """3,4c3,4 class TestDiff(unittest.TestCase): """Test cases for computations.diff""" + @pytest.mark.unit_test def test_generate_diff(self): """Test that the correct diff is generated""" data = os.path.join(os.path.dirname(__file__).split("unit")[0], |