Skip to content

Commit 112bfe2

Browse files
cibandfaustbrian
authored andcommitted
chore: update pytest syntax (#54)
Update the 'py.test' syntax to use 'pytest' for better cross-platform support.
1 parent 1c7e4aa commit 112bfe2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ install:
99
before_script:
1010
- flake8 .
1111
script:
12-
- py.test -v -s --cov=crypto --cov-config=.coveragerc --cov-report xml
12+
- pytest -v -s --cov=crypto --cov-config=.coveragerc --cov-report xml
1313
after_success:
1414
- bash <(curl -s https://codecov.io/bash)
1515
branches:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test:
2-
py.test -v -s $(ARGS)
2+
pytest -v -s $(ARGS)
33

44
lint:
55
flake8 .

0 commit comments

Comments
 (0)