| Adam Israel | 5e08a0e | 2018-09-06 19:22:47 -0400 | [diff] [blame] | 1 | clean: |
| 2 | find . -name __pycache__ -type d -exec rm -r {} + |
| 3 | find . -name *.pyc -delete |
| 4 | rm -rf .tox |
| Adam Israel | fc511ed | 2018-09-21 14:20:55 +0200 | [diff] [blame] | 5 | rm -rf tests/charms/builds/* |
| Adam Israel | 32a1519 | 2019-06-24 11:44:47 -0400 | [diff] [blame] | 6 | lxc list test- --format=json|jq '.[]["name"]'| xargs lxc delete --force || true |
| Adam Israel | 5e08a0e | 2018-09-06 19:22:47 -0400 | [diff] [blame] | 7 | .tox: |
| 8 | tox -r --notest |
| 9 | test: lint |
| 10 | tox |
| 11 | lint: |
| 12 | tox -e lint |
| Adam Israel | f32b6f2 | 2018-10-09 15:17:50 -0400 | [diff] [blame] | 13 | package: |
| 14 | python3 setup.py --command-packages=stdeb.command bdist_deb |