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 df4a4b3 commit 56d6ca2Copy full SHA for 56d6ca2
.travis.yml
@@ -18,7 +18,7 @@ install:
18
- poetry install
19
20
script:
21
- - poetry run py.test tests/
+ - poetry run pytest tests/
22
23
after_success:
24
- poetry run coveralls
tox.ini
@@ -10,10 +10,10 @@ addopts = -v --cov rsa --cov-report term-missing
10
deps = poetry
11
commands =
12
poetry install
13
- poetry run py.test tests/
+ poetry run pytest tests/
14
15
[testenv:py37]
16
whitelist_externals = poetry
17
commands=
- poetry run py.test --doctest-modules rsa tests/
+ poetry run pytest --doctest-modules rsa tests/
0 commit comments