Skip to content

chore: rename 'tools/functional/' to 'tests/functional/' #1469

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 26, 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 .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
],
"regexManagers": [
{
"fileMatch": ["^tools/functional/fixtures/.env$"],
"fileMatch": ["^tests/functional/fixtures/.env$"],
"matchStrings": ["GITLAB_TAG=(?<currentValue>.*?)\n"],
"depNameTemplate": "gitlab/gitlab-ce",
"datasourceTemplate": "docker",
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include COPYING AUTHORS ChangeLog.rst RELEASE_NOTES.rst requirements.txt test-requirements.txt rtd-requirements.txt
include tox.ini .travis.yml
recursive-include tools *
recursive-include tests *
recursive-include docs *j2 *.py *.rst api/*.rst Makefile make.bat
recursive-include gitlab/tests/data *
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def temp_dir():

@pytest.fixture(scope="session")
def test_dir(pytestconfig):
return pytestconfig.rootdir / "tools" / "functional"
return pytestconfig.rootdir / "tests" / "functional"


@pytest.fixture(scope="session")
Expand Down
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 @@ -97,9 +97,9 @@ script_launch_mode = subprocess
[testenv:cli_func_v4]
deps = -r{toxinidir}/docker-requirements.txt
commands =
pytest --cov --cov-report xml tools/functional/cli {posargs}
pytest --cov --cov-report xml tests/functional/cli {posargs}

[testenv:py_func_v4]
deps = -r{toxinidir}/docker-requirements.txt
commands =
pytest --cov --cov-report xml tools/functional/api {posargs}
pytest --cov --cov-report xml tests/functional/api {posargs}