Skip to content

Commit 1ac0722

Browse files
chore: move 'gitlab/tests/' dir to 'tests/unit/'
Move the 'gitlab/tests/' directory to 'tests/unit/' so we have all the tests located under the 'tests/' directory.
1 parent 90ecf2f commit 1ac0722

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ include COPYING AUTHORS ChangeLog.rst RELEASE_NOTES.rst requirements.txt test-re
22
include tox.ini .travis.yml
33
recursive-include tests *
44
recursive-include docs *j2 *.py *.rst api/*.rst Makefile make.bat
5-
recursive-include gitlab/tests/data *
5+
recursive-include tests/unit/data *
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.

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ install_command = pip install {opts} {packages}
1313
deps = -r{toxinidir}/requirements.txt
1414
-r{toxinidir}/test-requirements.txt
1515
commands =
16-
pytest gitlab/tests {posargs}
16+
pytest tests/unit {posargs}
1717

1818
[testenv:pep8]
1919
basepython = python3
@@ -79,7 +79,7 @@ commands = python setup.py build_sphinx
7979
[testenv:cover]
8080
commands =
8181
pytest --cov --cov-report term --cov-report html \
82-
--cov-report xml gitlab/tests {posargs}
82+
--cov-report xml tests/unit {posargs}
8383

8484
[coverage:run]
8585
omit = *tests*

0 commit comments

Comments
 (0)