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 7950f42 commit 8ef5063Copy full SHA for 8ef5063
.learn/exercises/02-pipenv-installation/test.py
.learn/exercises/02.1-flask-installation/test.py
@@ -4,13 +4,6 @@
4
def test_pipfile_exists():
5
assert os.path.isfile("Pipfile")
6
7
-@pytest.mark.it("Python version on Pipfile must be 3+")
8
-def test_pipfile_contains_python_version():
9
- with open("Pipfile", "r") as f:
10
- toml_content = f.read()
11
- parsed_toml = toml.loads(toml_content)
12
- assert parsed_toml["requires"]["python_version"][0:2] == "3."
13
-
14
@pytest.mark.it("Flask must exist on the pipfile dependency [packages]")
15
def test_pipfile_contains_flask():
16
with open("Pipfile", "r") as f:
0 commit comments