| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 [tox] | 1 [tox] |
| 2 envlist = py27,py35 | 2 envlist = py27,py35 |
| 3 skipsdist = true | 3 skipsdist = true |
| 4 | 4 |
| 5 [testenv] | 5 [testenv] |
| 6 commands = python autotest.py | 6 whitelist_externals = sh |
|
Sebastian Noack
2016/08/28 22:36:14
Note that in order to test all code paths, we'd ha
Vasily Kuznetsov
2016/08/29 15:29:52
What you say makes sense, however, downloading use
Sebastian Noack
2016/08/30 11:44:38
There you go, however, I decided to check for an o
Vasily Kuznetsov
2016/08/30 13:16:30
Great, this is even better.
| |
| 7 commands = | |
| 8 # In order to make sure that the code downloading jsshell gets | |
| 9 # tested call "tox nocache". Consider calling "tox" (without arguments) | |
| 10 # afterwards to test the other scenario as well. | |
| 11 sh -c '[ "{posargs}" = "nocache" ] && rm -rf mozilla* || true' | |
| 12 | |
| 13 python autotest.py | |
| LEFT | RIGHT |