Chandan Singh pushed to branch chandan/toxify at BuildStream / buildstream
Commits:
-
d630aed0
by Chandan Singh at 2018-12-30T18:34:58Z
8 changed files:
- setup.py
- dev-requirements.in → tools/dev-requirements.in
- dev-requirements.txt → tools/dev-requirements.txt
- plugin-requirements.in → tools/plugin-requirements.in
- plugin-requirements.txt → tools/plugin-requirements.txt
- requirements.in → tools/requirements.in
- requirements.txt → tools/requirements.txt
- tox.ini
Changes:
... | ... | @@ -270,10 +270,10 @@ def get_cmdclass(): |
270 | 270 |
#####################################################
|
271 | 271 |
# Gather requirements #
|
272 | 272 |
#####################################################
|
273 |
-with open('dev-requirements.in') as dev_reqs:
|
|
273 |
+with open('tools/dev-requirements.in') as dev_reqs:
|
|
274 | 274 |
dev_requires = dev_reqs.read().splitlines()
|
275 | 275 |
|
276 |
-with open('requirements.in') as install_reqs:
|
|
276 |
+with open('tools/requirements.in') as install_reqs:
|
|
277 | 277 |
install_requires = install_reqs.read().splitlines()
|
278 | 278 |
|
279 | 279 |
#####################################################
|
... | ... | @@ -5,8 +5,8 @@ skip_missing_interpreters = true |
5 | 5 |
[testenv]
|
6 | 6 |
commands = pytest {posargs}
|
7 | 7 |
deps =
|
8 |
- -rrequirements.txt
|
|
9 |
- -rdev-requirements.txt
|
|
10 |
- -rplugin-requirements.txt
|
|
8 |
+ -rtools/requirements.txt
|
|
9 |
+ -rtools/dev-requirements.txt
|
|
10 |
+ -rtools/plugin-requirements.txt
|
|
11 | 11 |
passenv =
|
12 | 12 |
GI_TYPELIB_PATH
|