nficano commited on
Commit
fea4070
·
1 Parent(s): 0257cd3

fixing travis for python 2.7 build

Browse files
Files changed (2) hide show
  1. .travis.yml +3 -3
  2. Makefile +7 -0
.travis.yml CHANGED
@@ -8,9 +8,9 @@ python:
8
  - "3.5"
9
  - "3.6"
10
  - "3.6-dev"
11
- install:
12
- - pip install --upgrade pipenv
13
- - pipenv install --dev --ignore-pipfile
14
  before_script: flake8
15
  before_install:
16
  - sudo apt-get install -y python-pip
 
8
  - "3.5"
9
  - "3.6"
10
  - "3.6-dev"
11
+ install: "make"
12
+ script:
13
+ - make test
14
  before_script: flake8
15
  before_install:
16
  - sudo apt-get install -y python-pip
Makefile CHANGED
@@ -22,3 +22,10 @@ clean-pyc:
22
 
23
  install: clean
24
  python setup.py install
 
 
 
 
 
 
 
 
22
 
23
  install: clean
24
  python setup.py install
25
+
26
+ init:
27
+ pip install pipenv
28
+ pipenv install --dev
29
+
30
+ test:
31
+ pipenv run py.test tests