| Mike Marchetti | 4c7e237 | 2017-05-08 16:07:20 -0400 | [diff] [blame] | 1 | # Copyright 2017 Sandvine |
| 2 | # |
| 3 | # All Rights Reserved. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | # not use this file except in compliance with the License. You may obtain |
| 7 | # a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | # License for the specific language governing permissions and limitations |
| 15 | # under the License. |
| 16 | # |
| 17 | |
| 18 | all: build_tools |
| 19 | $(MAKE) test |
| 20 | $(MAKE) package |
| 21 | |
| 22 | BUILD_TOOLS=python python3 virtualenv \ |
| 23 | libcurl4-gnutls-dev python-pip \ |
| 24 | python3-pip libgnutls-dev debhelper |
| 25 | |
| Mike Marchetti | 4c7e237 | 2017-05-08 16:07:20 -0400 | [diff] [blame] | 26 | build_tools: |
| 27 | sudo apt-get -y install $(BUILD_TOOLS) |
| 28 | |
| Mike Marchetti | 952e203 | 2017-05-09 13:02:32 -0400 | [diff] [blame] | 29 | package: |
| Mike Marchetti | fd17d64 | 2017-05-24 17:30:03 -0400 | [diff] [blame^] | 30 | python setup.py --command-packages=stdeb.command bdist_deb |
| Mike Marchetti | 4c7e237 | 2017-05-08 16:07:20 -0400 | [diff] [blame] | 31 | |
| Mike Marchetti | fd17d64 | 2017-05-24 17:30:03 -0400 | [diff] [blame^] | 32 | test_flake8: |
| 33 | pip install -Ur test_requirements.txt |
| 34 | python setup.py flake8 |
| Mike Marchetti | 4c7e237 | 2017-05-08 16:07:20 -0400 | [diff] [blame] | 35 | |
| Mike Marchetti | fd17d64 | 2017-05-24 17:30:03 -0400 | [diff] [blame^] | 36 | test_nose: test_requirements.txt |
| 37 | pip install -Ur test_requirements.txt |
| 38 | python setup.py test |
| Mike Marchetti | 4c7e237 | 2017-05-08 16:07:20 -0400 | [diff] [blame] | 39 | |
| Mike Marchetti | fd17d64 | 2017-05-24 17:30:03 -0400 | [diff] [blame^] | 40 | test_nose3: test_requirements.txt |
| 41 | pip3 install -Ur test_requirements.txt |
| 42 | python3 setup.py test |
| Mike Marchetti | 4c7e237 | 2017-05-08 16:07:20 -0400 | [diff] [blame] | 43 | |
| 44 | test: test_flake8 test_nose test_nose3 |
| 45 | |
| 46 | .PHONY: package build_tools test test_flake8 test_nose test_nose3 |
| 47 | |
| 48 | clean: |
| Mike Marchetti | fd17d64 | 2017-05-24 17:30:03 -0400 | [diff] [blame^] | 49 | rm -rf deb_dist dist osmclient.egg-info |