no need for separate requirements-skip folder anymore

This commit is contained in:
David Lord 2024-10-31 12:59:47 -07:00
parent 99ce7ed0e4
commit 227838c472
No known key found for this signature in database
GPG Key ID: 43368A7AA8CC5926
5 changed files with 3 additions and 4 deletions

View File

@ -1,2 +0,0 @@
Dependabot will only update files in the `requirements` directory. This directory is
separate because the pins in here should not be updated automatically.

View File

@ -17,8 +17,8 @@ constrain_package_deps = true
use_frozen_constraints = true
deps =
-r requirements/tests.txt
min: -r requirements-skip/tests-min.txt
dev: -r requirements-skip/tests-dev.txt
min: -r requirements/tests-min.txt
dev: -r requirements/tests-dev.txt
commands = pytest -v --tb=short --basetemp={envtmpdir} {posargs}
[testenv:style]
@ -39,6 +39,7 @@ commands = sphinx-build -E -W -b dirhtml docs docs/_build/dirhtml
[testenv:update-actions]
labels = update
deps = gha-update
skip_install = true
commands = gha-update
[testenv:update-pre_commit]