Skip to content

Commit

Permalink
fix: dev: add True arg for pytest's skip's mark
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmadaniHaryono committed Mar 27, 2017
1 parent 3f13bc3 commit 3b4cf59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_bukuDb.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ def test_delete_rec_range_and_delay_commit(setup, low, high, delay_commit, input
os.environ['XDG_DATA_HOME'] = TEST_TEMP_DIR_PATH


@pytest.mark.skip(reason='Impossible case.')
@pytest.mark.skip(True, reason='Impossible case.')
@pytest.mark.parametrize(
'low, high',
product(
Expand Down Expand Up @@ -663,7 +663,7 @@ def test_delete_rec_on_empty_database(setup, index, is_range, low, high):
os.environ['XDG_DATA_HOME'] = TEST_TEMP_DIR_PATH


@pytest.mark.skip(reason='Impossible case.')
@pytest.mark.skip(True, reason='Impossible case.')
@pytest.mark.parametrize(
'index, low, high, is_range',
product(
Expand Down

0 comments on commit 3b4cf59

Please sign in to comment.