Przeglądaj źródła

Bump pytest and don't capture logs. Also, show which tests are skipped.

Omer Katz 6 lat temu
rodzic
commit
6f66d48255
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 1 1
      requirements/test.txt
  2. 2 2
      tox.ini

+ 1 - 1
requirements/test.txt

@@ -1,2 +1,2 @@
 case>=1.3.1
-pytest>=3.0,<3.3
+pytest>=3.3

+ 2 - 2
tox.ini

@@ -31,8 +31,8 @@ deps=
 sitepackages = False
 recreate = False
 commands =
-    unit: py.test -xv --cov=celery --cov-report=xml --cov-report term
-    integration: py.test -xsv t/integration
+    unit: pytest -rsx -xv --capture=no --cov=celery --cov-report=xml --cov-report term
+    integration: pytest -rsx --capture=no -xsv t/integration
 setenv =
     WORKER_LOGLEVEL = INFO
     PYTHONIOENCODING = UTF-8