Skip to content

Commit 8a3b6cf

Browse files
committed
Update pytest dependency. Replace py.test references with pytest.
1 parent cb5f9c7 commit 8a3b6cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install:
1818
- pip install -e .\[dev\]
1919

2020
script:
21-
- py.test tests --cov click_plugins --cov-report term-missing
21+
- pytest tests --cov click_plugins --cov-report term-missing
2222

2323
after_success:
2424
- coveralls

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Developing
165165
$ git clone https://github.com/click-contrib/click-plugins.git
166166
$ cd click-plugins
167167
$ pip install -e .\[dev\]
168-
$ py.test tests --cov click_plugins --cov-report term-missing
168+
$ pytest tests --cov click_plugins --cov-report term-missing
169169
170170
171171
Changelog

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"via setuptools entry-points.",
5252
extras_require={
5353
'dev': [
54-
'pytest',
54+
'pytest>=3',
5555
'pytest-cov',
5656
'wheel',
5757
'coveralls'

0 commit comments

Comments
 (0)