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 cd7a171 commit 0c0fa36Copy full SHA for 0c0fa36
.gitignore
@@ -5,3 +5,4 @@ build/
5
*.pyc
6
/.tox
7
.DS_Store
8
+.pytest_cache
.travis.yml
@@ -11,6 +11,7 @@ services:
11
- redis-server
12
13
install:
14
+ - pip install -U pytest # Travis comes with an old version pre-installed.
15
- pip install -e .[tests]
16
- pip freeze
17
setup.py
@@ -10,10 +10,10 @@
10
crypto_requires = ["cryptography>=1.3.0"]
test_requires = crypto_requires + [
- "pytest~=5.4.0",
- "pytest-asyncio~=0.8",
- "async_generator~=1.8",
- "async-timeout~=2.0",
+ "pytest",
+ "pytest-asyncio",
+ "async_generator",
+ "async-timeout",
]
18
19
0 commit comments