| OLD | NEW | 
|---|
| 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 whitelist_externals = sh | 6 whitelist_externals = sh | 
|  | 7 deps = | 
|  | 8     flake8 | 
|  | 9     pep8-naming | 
|  | 10     hg+https://hg.adblockplus.org/codingtools#egg=flake8-abp&subdirectory=flake8
    -abp | 
|  | 11 | 
| 7 commands = | 12 commands = | 
| 8     # In order to make sure that the code downloading jsshell gets | 13     # In order to make sure that the code downloading jsshell gets | 
| 9     # tested call "tox nocache". Consider calling "tox" (without arguments) | 14     # tested call "tox nocache". Consider calling "tox" (without arguments) | 
| 10     # afterwards to test the other scenario as well. | 15     # afterwards to test the other scenario as well. | 
| 11     sh -c '[ "{posargs}" = "nocache" ] && rm -rf mozilla* || true' | 16     sh -c '[ "{posargs}" = "nocache" ] && rm -rf mozilla* || true' | 
| 12 | 17 | 
| 13     python autotest.py | 18     python autotest.py | 
|  | 19     flake8 | 
| OLD | NEW | 
|---|