Skip to content

Commit bf03e5b

Browse files
committed
Don't use pytest --no-summary which is a pytest 6.0.0rc1 feature
1 parent 3499047 commit bf03e5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ test:
2929
@echo ""
3030
@cd $(TESTDIR); python -c "import $(PROJECT); $(PROJECT).show_versions()"
3131
@echo ""
32-
cd $(TESTDIR); pytest -m runfirst --no-summary $(PYTEST_ARGS) $(PROJECT)
32+
cd $(TESTDIR); pytest -m runfirst $(PYTEST_ARGS) $(PROJECT)
3333
cd $(TESTDIR); pytest -m 'not runfirst' $(PYTEST_ARGS) $(PROJECT)
3434
cp $(TESTDIR)/coverage.xml .
3535
cp -r $(TESTDIR)/htmlcov .

0 commit comments

Comments
 (0)