Use pytest instead of py.test per upstream recommendation, #dropthedot

http://blog.pytest.org/2016/whats-new-in-pytest-30/
https://twitter.com/hashtag/dropthedot
This commit is contained in:
Ville Skyttä
2018-05-15 22:00:54 +02:00
parent cddc375bbe
commit 0ce8ed205d
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ before_script:
script:
- pip install -e .
- py.test --cov ./MySQLdb
- pytest --cov ./MySQLdb
after_succes:
- codecov

View File

@@ -1,4 +1,4 @@
import py.test
import pytest
import MySQLdb.cursors
from configdb import connection_factory