Skip to content

Commit 236c0cc

Browse files
committed
Move test requirements into tests/
This makes the file easier to locate, by placing it next to the stuff that it will affect.
1 parent 25af8e5 commit 236c0cc

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
tests:
3131
# Anything that's touching testable stuff
3232
- ".github/workflows/ci.yml"
33-
- "tools/requirements/tests.txt"
3433
- "src/**"
3534
- "tests/**"
3635
if: github.event_name == 'pull_request'
File renamed without changes.

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ setenv =
2323
# This is required in order to get UTF-8 output inside of the subprocesses
2424
# that our tests use.
2525
LC_CTYPE = en_US.UTF-8
26-
deps = -r{toxinidir}/tools/requirements/tests.txt
26+
deps = -r{toxinidir}/tests/requirements.txt
2727
commands_pre =
2828
python -c 'import shutil, sys; shutil.rmtree(sys.argv[1], ignore_errors=True)' {toxinidir}/tests/data/common_wheels
29-
{[helpers]pip} wheel -w {toxinidir}/tests/data/common_wheels -r {toxinidir}/tools/requirements/tests-common_wheels.txt
29+
{[helpers]pip} wheel -w {toxinidir}/tests/data/common_wheels -r {toxinidir}/tests/requirements-common_wheels.txt
3030
commands = pytest []
3131
install_command = {[helpers]pip} install {opts} {packages}
3232
list_dependencies_command = {[helpers]pip} freeze --all

0 commit comments

Comments
 (0)