Skip to content

Commit 0ad6a19

Browse files
committed
ci: Move different sets of constraint and requirement files to different directories.
This allows Dependabot to update both dependency sets independently. Signed-off-by: Michael Seifert <[email protected]>
1 parent 773a557 commit 0ad6a19

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.github/dependabot.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
version: 2
33
updates:
44
- package-ecosystem: pip
5-
directory: /
5+
directory: /dependencies/default
66
schedule:
7-
interval: daily
7+
interval: weekly
8+
open-pull-requests-limit: 10
9+
target-branch: master
10+
- package-ecosystem: pip
11+
directory: /dependencies/pytest-min
12+
schedule:
13+
interval: weekly
814
open-pull-requests-limit: 10
915
target-branch: master
1016
- package-ecosystem: github-actions
File renamed without changes.
File renamed without changes.
File renamed without changes.

tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ passenv =
88
[testenv]
99
extras = testing
1010
deps =
11-
--requirement requirements.txt
12-
--constraint constraints.txt
11+
--requirement dependencies/default/requirements.txt
12+
--constraint dependencies/default/constraints.txt
1313
commands = make test
1414
allowlist_externals =
1515
make
1616

1717
[testenv:pytest-min]
1818
extras = testing
1919
deps =
20-
--requirement pytest-min-requirements.txt
21-
--constraint pytest-min-constraints.txt
20+
--requirement dependencies/pytest-min/requirements.txt
21+
--constraint dependencies/pytest-min/constraints.txt
2222
commands = make test
2323
allowlist_externals =
2424
make

0 commit comments

Comments
 (0)