File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ dist: trusty
2
2
language : python
3
3
python :
4
4
- " 2.7"
5
- - " 3.3"
6
5
- " 3.4"
7
6
- " 3.5"
8
7
- " 3.6"
13
12
install :
14
13
# Needs a newer version of pip to do the pip installation line
15
14
- pip install pip --upgrade
16
- - pip install .[test] nose
15
+ - pip install -e '.[test]'
16
+ - pip install nose
17
17
cache :
18
18
apt : true
19
19
pip : true
@@ -23,9 +23,8 @@ before_script:
23
23
- env | grep DB
24
24
- bash -c "if [ '$DB' = 'mysql57' ]; then sudo ./scripts/install_mysql57.sh; fi"
25
25
- bash -c "if [ '$DB' = 'mysql56' ]; then sudo ./scripts/install_mysql56.sh; fi"
26
- - which nosetests > ~/where-is-nosetests
27
26
script :
28
- - " sudo $(cat ~/where-is- nosetests) pymysqlreplication.tests.test_abnormal:TestAbnormalBinLogStreamReader.test_no_trailing_rotate_event"
27
+ - " sudo $(which nosetests) pymysqlreplication.tests.test_abnormal:TestAbnormalBinLogStreamReader.test_no_trailing_rotate_event"
29
28
- " nosetests -e test_no_trailing_rotate_event"
30
29
31
30
deploy :
You can’t perform that action at this time.
0 commit comments