Update pytest requirements

This commit is contained in:
Pedro Algarvio 2018-12-10 10:10:01 +00:00
parent 00a7ba0696
commit 6dd8e40266
2 changed files with 7 additions and 6 deletions

11
Pipfile
View file

@ -20,17 +20,18 @@ boto = ">=2.32.1"
boto3 = ">=1.2.1" boto3 = ">=1.2.1"
moto = ">=0.3.6" moto = ">=0.3.6"
SaltPyLint = ">=v2017.3.6" SaltPyLint = ">=v2017.3.6"
pytest = ">=3.5.0" pytest = ">=4.0.1"
pytest-cov = "*"
pytest-salt = "==2018.12.8"
pytest-timeout = ">=1.3.3"
pytest-tempdir = ">=2018.8.11"
pytest-helpers-namespace = ">=2017.11.11"
[packages.futures] [packages.futures]
# Required by Tornado to handle threads stuff. # Required by Tornado to handle threads stuff.
version = ">=2.0" version = ">=2.0"
markers = "python_version < '3.0'" markers = "python_version < '3.0'"
[dev-packages.pytest-salt]
git = "git://github.com/saltstack/pytest-salt.git"
ref = "master"
[dev-packages.httpretty] [dev-packages.httpretty]
# httpretty Needs to be here for now even though it's a dependency of boto. # httpretty Needs to be here for now even though it's a dependency of boto.
# A pip install on a fresh system will decide to target httpretty 0.8.10 to # A pip install on a fresh system will decide to target httpretty 0.8.10 to

View file

@ -1,7 +1,7 @@
# PyTest # PyTest
pytest >= 4.0.1 pytest >= 4.0.1
pytest-cov pytest-cov
pytest-salt >= 2018.12.8 pytest-salt == 2018.12.8
pytest-timeout >= 1.3.3 pytest-timeout >= 1.3.3
pytest-tempdir >= 2018.8.11 pytest-tempdir >= 2018.8.11
pytest-helpers-namespace >= 2017.11.11 pytest-helpers-namespace >= 2017.11.11