Skip to content

Commit

Permalink
tests: 3.6 -> 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
elikoga committed Aug 30, 2023
1 parent 912d4f2 commit dc4f649
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/batou/secrets/tests/test_editor.py
Expand Up @@ -24,8 +24,8 @@ def test_edit_gpg(tmpdir):


@pytest.mark.skipif(
sys.version_info < (3, 6),
reason="age is available in tests with python 3.6 only",
sys.version_info < (3, 7),
reason="age is available in tests with python 3.7 only",
)
def test_edit_age(tmpdir):
editor = Editor(
Expand Down Expand Up @@ -118,8 +118,8 @@ def test_edit_file_has_secret_prefix_gpg(tmpdir, encrypted_file):


@pytest.mark.skipif(
sys.version_info < (3, 6),
reason="age is available in tests with python 3.6 only",
sys.version_info < (3, 7),
reason="age is available in tests with python 3.7 only",
)
def test_edit_file_has_secret_prefix_age(tmpdir, encrypted_file):
filename = "asdf123"
Expand Down

0 comments on commit dc4f649

Please sign in to comment.