We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05afe1 commit 9e3b865Copy full SHA for 9e3b865
tests/test_cli.py
@@ -1,4 +1,9 @@
1
import subprocess
2
+import sys
3
+
4
+import pytest
5
6
+PYTHON_VERSION = float(f"{sys.version_info.major}.{sys.version_info.minor}")
7
8
9
def test_invoke_list():
@@ -8,6 +13,7 @@ def test_invoke_list():
13
assert return_code == 0
14
10
15
16
+@pytest.mark.skipif(reason="Minor marker differences", condition=PYTHON_VERSION != 3.8)
11
17
def test_requirements_txt():
12
18
"""Validate that requirements.txt and requirements-dev.txt
19
are up2date with Pipefile"""
0 commit comments