2018-11-06 13:47:09 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import ci_lib
|
|
|
|
|
|
|
|
batches = [
|
|
|
|
[
|
2019-01-19 06:44:49 +00:00
|
|
|
'pip install "pycparser<2.19" "idna<2.7"',
|
2018-11-06 13:47:09 +00:00
|
|
|
'pip install -r tests/requirements.txt',
|
|
|
|
],
|
|
|
|
[
|
2018-11-07 00:33:55 +00:00
|
|
|
'docker pull %s' % (ci_lib.image_for_distro(ci_lib.DISTRO),),
|
2018-11-06 13:47:09 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
ci_lib.run_batches(batches)
|