
Allow section to have parent like tox.ini, i.e: foo: images: - image1 foo:bar: commands: - blah would have foo:bar getting the image image1 since dependent of foo Change-Id: I613db9ed9ac16c978ef8a42a604992ce2205bc08
20 lines
348 B
YAML
20 lines
348 B
YAML
testing:
|
|
images:
|
|
- infra/trusty
|
|
add:
|
|
- requirements.txt
|
|
- test-requirements.txt
|
|
prep:
|
|
- pip install -U -r requirements.txt -r test-requirements.txt
|
|
commands:
|
|
- export PYTHONHASHSEED=$RANDOM
|
|
- python setup.py testr --slowest
|
|
|
|
testing:pep8:
|
|
commands:
|
|
- flake8
|
|
|
|
testing:cover:
|
|
commands:
|
|
- /bin/echo "hello"
|