We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 083c765 commit aeefd4fCopy full SHA for aeefd4f
.travis.yml
@@ -1,13 +1,16 @@
1
+dist: xenial # required for Python >= 3.7
2
language: python
3
python:
- - 2.7
4
+ - "2.7"
5
+ - "3.5"
6
+ - "3.6"
7
+ - "3.7"
8
9
env:
10
- MYSQL_HOST="127.0.0.1"
11
12
install:
- - pip install pipenv
- - pipenv install --dev
13
+ - pip install -r requirements.txt
14
15
before_script:
16
- sudo service mysql stop
requirements.txt
@@ -0,0 +1,4 @@
+ansible~=2.7.11
+pytest~=4.6.2
+pytest-mock~=1.10.4
+PyMySQL~=0.9.3
0 commit comments