8000 chore: move 'gitlab/tests/' dir to 'tests/unit/' by JohnVillalovos · Pull Request #1474 · python-gitlab/python-gitlab · GitHub
[go: up one dir, main page]

Skip to content

chore: move 'gitlab/tests/' dir to 'tests/unit/' #1474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ include COPYING AUTHORS ChangeLog.rst RELEASE_NOTES.rst requirements.txt test-re
include tox.ini .travis.yml
recursive-include tests *
recursive-include docs *j2 *.py *.rst api/*.rst Makefile make.bat
recursive-include gitlab/tests/data *
recursive-include tests/unit/data *
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm thinking we can actually remove this now as we already recurse tests/ in line 3. But this file needs a cleanup, I'll push a small PR after :)

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
pytest gitlab/tests {posargs}
pytest tests/unit {posargs}

[testenv:pep8]
basepython = python3
Expand Down Expand Up @@ -79,7 +79,7 @@ commands = python setup.py build_sphinx
[testenv:cover]
commands =
pytest --cov --cov-report term --cov-report html \
--cov-report xml gitlab/tests {posargs}
--cov-report xml tests/unit {posargs}

[coverage:run]
omit = *tests*
Expand Down
0