Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
445d3847
Commit
445d3847
authored
Jun 06, 2018
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move ignores into conftest.py
parent
65699525
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
conftest.py
conftest.py
+12
-0
pytest.ini
pytest.ini
+1
-1
No files found.
conftest.py
View file @
445d3847
...
...
@@ -6,3 +6,15 @@ def pytest_addoption(parser):
"--package_name"
,
action
=
"append"
,
default
=
[],
help
=
"list of package_name to pass to test functions"
,
)
collect_ignore
=
[
'release.py'
,
'setuptools/lib2to3_ex.py'
,
'tests/manual_test.py'
,
'tests/test_pypi.py'
,
'tests/shlib_test'
,
'scripts/upload-old-releases-as-zip.py'
,
'pavement.py'
,
'setuptools/tests/mod_with_constant.py'
,
]
pytest.ini
View file @
445d3847
[pytest]
addopts
=
--doctest-modules --
ignore release.py --ignore setuptools/lib2to3_ex.py --ignore tests/manual_test.py --ignore tests/test_pypi.py --ignore tests/shlib_test --doctest-glob=pkg_resources/api_tests.txt --ignore scripts/upload-old-releases-as-zip.py --ignore pavement.py --ignore setuptools/tests/mod_with_constant.py
-rsxX
addopts
=
--doctest-modules --
doctest-glob=pkg_resources/api_tests.txt
-rsxX
norecursedirs
=
dist build *.egg setuptools/extern pkg_resources/extern .*
flake8-ignore
=
setuptools/site-patch.py
F821
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment