Tox + Integration testing
[osm/N2VC.git] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..4655d33
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+clean:
+       find . -name __pycache__ -type d -exec rm -r {} +
+       find . -name *.pyc -delete
+       rm -rf .tox
+       rm -rf tests/charms/tmp*
+.tox:
+       tox -r --notest
+test: lint
+       tox
+lint:
+       tox -e lint