Skip to content

Commit 63ab503

Browse files
authored
Merge pull request #59 from hcoura/update-test-environments
Update test environments
2 parents c934fee + 2d5017a commit 63ab503

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ language: python
44
matrix:
55
include:
66
- python: 2.7
7-
env: TOXENV=py27,stack-scrapy-1.0,stack-scrapy-1.1,stack-scrapy-1.2,stack-scrapy-1.3,stack-scrapy-1.4
7+
env: TOXENV=py27,stack-scrapy-1.0,stack-scrapy-1.1,stack-scrapy-1.2,stack-scrapy-1.3,stack-scrapy-1.4,stack-scrapy-1.5
88
- python: 3.5
99
env: TOXENV=py35,stack-scrapy-1.1-py3,stack-scrapy-1.2-py3
1010
- python: 3.6
11-
env: TOXENV=py36,stack-scrapy-1.3-py3,stack-scrapy-1.4-py3
11+
env: TOXENV=py36,stack-scrapy-1.3-py3,stack-scrapy-1.4-py3,stack-scrapy-1.5-py3
1212

1313
install:
1414
- pip install -U tox codecov

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
scrapy>=0.22
1+
scrapy>=1.0
22
six
33
w3lib

tox.ini

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tox.ini
22
[tox]
3-
envlist = py27,py34,py35,docs
3+
envlist = py27,py34,py35,py36,docs
44

55
[testenv]
66
deps =
@@ -90,12 +90,31 @@ deps =
9090
w3lib==1.17.0
9191
-rtests/requirements.txt
9292

93+
[testenv:stack-scrapy-1.5]
94+
basepython = python2.7
95+
deps =
96+
Scrapy==1.5.1
97+
-rtests/requirements.txt
98+
99+
100+
[testenv:stack-scrapy-1.5-py3]
101+
basepython = python3.6
102+
deps =
103+
Scrapy==1.5.1
104+
-rtests/requirements.txt
105+
93106
[testenv:py34]
94107
basepython = python3.4
95108

96109
[testenv:py35]
97110
basepython = python3.5
98111

112+
[testenv:py36]
113+
basepython = python3.6
114+
115+
[testenv:py37]
116+
basepython = python3.7
117+
99118
[docs]
100119
changedir = docs
101120
deps =

0 commit comments

Comments
 (0)