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 2b76bf9 commit 1533562Copy full SHA for 1533562
test/unit/config_test.py
@@ -53,8 +53,8 @@ class BaseConfigExpansion(BaseConfig):
53
54
55
def test_expansion_validation():
56
- BaseConfigExpansion()
57
-
+ with pytest.raises(ValueError):
+ _ = BaseConfigExpansion(python_versions=("1.f.0",))
58
59
def test_min_py_version():
60
conf = BaseConfig(python_versions=("5.5.5", "1.1.1", "9.9.9"))
0 commit comments