Skip to content

Commit

Permalink
chg: test: skip test for python<3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmadaniHaryono committed Mar 27, 2017
1 parent 1eba948 commit 1eeac89
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_bukuDb.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
"a case for replace_tag test"],
]

only_python_3_5 = pytest.mark.skipif(sys.version_info < (3, 5), reason="requires python3.5")


@pytest.fixture()
def setup():
Expand Down Expand Up @@ -567,6 +569,7 @@ def test_delete_rec_range_and_delay_commit(setup, low, high, delay_commit, input
os.environ['XDG_DATA_HOME'] = TEST_TEMP_DIR_PATH


@only_python_3_5
@pytest.mark.parametrize(
'low, high',
product(
Expand Down

0 comments on commit 1eeac89

Please sign in to comment.