diff options
author | xoviat <xoviat@users.noreply.github.com> | 2017-10-16 10:59:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-16 10:59:35 -0500 |
commit | 1cceb2cb31e10826bd6bfb1cfacfe4996a99ae63 (patch) | |
tree | 68cc214f741c89e13a3126f246c483ce0e84b0f6 | |
parent | b05a6c5e42d85ee463e5c718ceb49f19b609beba (diff) | |
download | external_python_setuptools-1cceb2cb31e10826bd6bfb1cfacfe4996a99ae63.tar.gz external_python_setuptools-1cceb2cb31e10826bd6bfb1cfacfe4996a99ae63.tar.bz2 external_python_setuptools-1cceb2cb31e10826bd6bfb1cfacfe4996a99ae63.zip |
FIX: remove the
-rw-r--r-- | setuptools/tests/test_build_meta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_build_meta.py b/setuptools/tests/test_build_meta.py index 2516b702..659c1a65 100644 --- a/setuptools/tests/test_build_meta.py +++ b/setuptools/tests/test_build_meta.py @@ -88,7 +88,7 @@ defns = [{ }] -@pytest.fixture(scope="module", params=defns) +@pytest.fixture(params=defns) def build_backend(tmpdir, request): build_files(request.param, prefix=str(tmpdir)) with tmpdir.as_cwd(): |