From e0ebb0241f609a5e7a915f0eeb9c3044cc5bab66 Mon Sep 17 00:00:00 2001 From: Marina Samuel Date: Mon, 5 Feb 2018 14:30:05 -0500 Subject: [PATCH] Add Makefile. --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f2a2430 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +lint: + flake8 stmoab/utils.py + flake8 stmoab/dashboards/SummaryDashboard.py + flake8 stmoab/dashboards/StatistcalDashboard.py + flake8 stmoab/dashboards/ActivityStreamExperimentDashboard.py + flake8 stmoab/tests/base.py + flake8 stmoab/tests/test_summary_dashboard.py + flake8 stmoab/test/test_utils.py + flake8 stmoab/tests/test_activity_stream_experiment_dashboard.py + flake8 stmoab/tests/test_statistical_dashboard.py + +test: lint + nosetests --with-coverage --cover-package=stmoab \ No newline at end of file