Add tests for pinned software in setup.py of test project

This commit is contained in:
Joe Rickerby
2020-02-18 20:44:52 +00:00
parent 3c20f70c5d
commit ddc4fb2ab8
2 changed files with 19 additions and 0 deletions
@@ -96,6 +96,7 @@ def test_dependency_constraints_file(tmp_path):
'pip': '19.2.3',
'setuptools': '43.0.0',
'wheel': '0.33.6',
'virtualenv': '16.7.8',
}
constraints_file = tmp_path / 'constraints.txt'
@@ -104,6 +105,7 @@ def test_dependency_constraints_file(tmp_path):
pip=={pip}
setuptools=={setuptools}
wheel=={wheel}
virtualenv=={virtualenv}
'''.format(**tool_versions)
))