Skip to content

Commit 56d6ca2

Browse files
hugovksybrenstuvel
authored andcommitted
pytest: drop the dot
1 parent df4a4b3 commit 56d6ca2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install:
1818
- poetry install
1919

2020
script:
21-
- poetry run py.test tests/
21+
- poetry run pytest tests/
2222

2323
after_success:
2424
- poetry run coveralls

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ addopts = -v --cov rsa --cov-report term-missing
1010
deps = poetry
1111
commands =
1212
poetry install
13-
poetry run py.test tests/
13+
poetry run pytest tests/
1414

1515
[testenv:py37]
1616
whitelist_externals = poetry
1717
commands=
1818
poetry install
19-
poetry run py.test --doctest-modules rsa tests/
19+
poetry run pytest --doctest-modules rsa tests/

0 commit comments

Comments
 (0)