From 3e3b9f7968fbe47b8e7038d1b1767676daecfaca Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 6 Jun 2018 08:57:21 -0400 Subject: Include pavement.py in tests (where applicable). --- conftest.py | 5 ++++- tests/requirements.txt | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index d966d68d..0d7b274c 100644 --- a/conftest.py +++ b/conftest.py @@ -13,10 +13,13 @@ def pytest_addoption(parser): collect_ignore = [ 'tests/manual_test.py', - 'pavement.py', 'setuptools/tests/mod_with_constant.py', ] if sys.version_info < (3,): collect_ignore.append('setuptools/lib2to3_ex.py') + + +if sys.version_info < (3, 6): + collect_ignore.append('pavement.py') diff --git a/tests/requirements.txt b/tests/requirements.txt index aff32c10..a8cde395 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -8,3 +8,4 @@ pytest>=3.0.2 wheel coverage>=4.5.1 pytest-cov>=2.5.1 +paver; python_version>="3.6" -- cgit v1.2.3