forked from sethoscope/heatmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
41 lines (38 loc) · 1.33 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This simple Makefile gives me an easy way to run tests locally.
# It's not maintained as consistently as .travis.yml and doesn't
# run as many tests (e.g. code coverage), but is easy to use without
# having to commit and push code to where Travis can see it.
#
# It's only intended for my own use, but I've included it in the repo
# anyway in case someone else finds it helpful.
tests: python2_tests python3_tests
python2_tests:
python2 test/test.py
python2 test/test_animation.py
python2 test/test_configuration.py
python2 test/test_coordinates.py
python2 test/test_gradients.py
python2 test/test_projection_scale.py
python2 test/test_projections.py
python2 test/test_random.py
python2 test/test_system.py
python2 test/test_system_gpx.py
python2 test/test_system_csv.py
python2 test/test_shp_file.py
python2 test/test_old_cmdline_support.py
pep8 heatmap.py test/*.py
pyflakes heatmap.py test/*.py
python3_tests:
python3 test/test.py
python3 test/test_animation.py
python3 test/test_configuration.py
python3 test/test_coordinates.py
python3 test/test_gradients.py
python3 test/test_projection_scale.py
python3 test/test_projections.py
python3 test/test_random.py
python3 test/test_system.py
python3 test/test_system_gpx.py
python2 test/test_system_csv.py
python2 test/test_shp_file.py
python3 test/test_old_cmdline_support.py