blob: 7806fcb10b7417581689250b7b7cf09eeae0002e [file] [log] [blame]
Mike Marchetti4c7e2372017-05-08 16:07:20 -04001# 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
18all: build_tools
19 $(MAKE) test
20 $(MAKE) package
21
22BUILD_TOOLS=python python3 virtualenv \
23 libcurl4-gnutls-dev python-pip \
24 python3-pip libgnutls-dev debhelper
25
Mike Marchetti4c7e2372017-05-08 16:07:20 -040026build_tools:
27 sudo apt-get -y install $(BUILD_TOOLS)
28
Mike Marchetti952e2032017-05-09 13:02:32 -040029package:
Mike Marchettifd17d642017-05-24 17:30:03 -040030 python setup.py --command-packages=stdeb.command bdist_deb
Mike Marchetti4c7e2372017-05-08 16:07:20 -040031
Mike Marchettifd17d642017-05-24 17:30:03 -040032test_flake8:
33 pip install -Ur test_requirements.txt
34 python setup.py flake8
Mike Marchetti4c7e2372017-05-08 16:07:20 -040035
Mike Marchettifd17d642017-05-24 17:30:03 -040036test_nose: test_requirements.txt
37 pip install -Ur test_requirements.txt
38 python setup.py test
Mike Marchetti4c7e2372017-05-08 16:07:20 -040039
Mike Marchettifd17d642017-05-24 17:30:03 -040040test_nose3: test_requirements.txt
41 pip3 install -Ur test_requirements.txt
42 python3 setup.py test
Mike Marchetti4c7e2372017-05-08 16:07:20 -040043
44test: test_flake8 test_nose test_nose3
45
46.PHONY: package build_tools test test_flake8 test_nose test_nose3
47
48clean:
Mike Marchettifd17d642017-05-24 17:30:03 -040049 rm -rf deb_dist dist osmclient.egg-info