Skip to content

Commit aeefd4f

Browse files
committedJun 10, 2019
test with python 3 and python 2
1 parent 083c765 commit aeefd4f

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed
 

‎.travis.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1+
dist: xenial # required for Python >= 3.7
12
language: python
23
python:
3-
- 2.7
4+
- "2.7"
5+
- "3.5"
6+
- "3.6"
7+
- "3.7"
48

59
env:
610
- MYSQL_HOST="127.0.0.1"
711

812
install:
9-
- pip install pipenv
10-
- pipenv install --dev
13+
- pip install -r requirements.txt
1114

1215
before_script:
1316
- sudo service mysql stop

‎requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ansible~=2.7.11
2+
pytest~=4.6.2
3+
pytest-mock~=1.10.4
4+
PyMySQL~=0.9.3

0 commit comments

Comments
 (0)