Skip to content

Commit 38a4338

Browse files
committed
Trying to fix travis
1 parent e75d23d commit 38a4338

File tree

3 files changed

+35
-27
lines changed

3 files changed

+35
-27
lines changed

.travis.yml

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
1-
# Config file for automatic testing at travis-ci.org
2-
# This file will be regenerated if you run travis_pypi_setup.py
3-
4-
language: python
5-
python:
6-
- 3.5
7-
- 3.4
8-
- 3.3
9-
- 2.7
10-
- 2.6
11-
12-
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
13-
install: pip install -U tox-travis
14-
15-
# command to run tests, e.g. python setup.py test
16-
script: tox
17-
18-
# After you create the Github repo and add it to Travis, run the
19-
# travis_pypi_setup.py script to finish PyPI deployment setup
1+
# This file was autogenerated and will overwrite each time you run travis_pypi_setup.py
202
deploy:
213
provider: pypi
224
distributions: sdist bdist_wheel
235
user: syrusakbary
246
password:
25-
secure: PLEASE_REPLACE_ME
26-
on:
27-
tags: true
28-
repo: graphql-python/graphql_ws
7+
secure: !!binary |
8+
ekpBaVZYWWd6MXdRWXI4ZkovU2kwQVBEMGZneXl0Q3k3MTVSa3VvK3UvTm10V3hJZGs0V3ZNSFZG
9+
T3lGK28ycDYvYUxwa2V0S1dVQmhONElSRlI2dWlhU1kzV0hQZ2N2ZFQ2MGk0TVFMSE5qWGZGelIx
10+
T2pMOERxUG1PWFNRRytBRU1NeVhGT0xrZjg1ZnZocXFmUmxGZG1qZFVnZDBJQ0ZSUnZGS0toOGc5
11+
OHJJTGVxMEVZWktuT1JneGJqdGF5Y05rVTlINnBNK09BV0xEeWpPK3JSVDRxSnluYldTUURmRUg1
12+
SWNuN3Y2WEowa3RFYlcrSGxja0JWbVR4ZHpQcTNCZ2dWOHZiRnQxR3N1dkFicG5CZUJ5OGlaelhN
13+
bWhnVGxReGtjZmVyMHZ1TFI1S2dQb3daNVA0ZThmaU0zd09aZlJZTTM1a3F4UGNqdndjRWZCNFl0
14+
Q2JKcGxqYld2QTM5K3RVVzI4WWpvSDlOVGl0WlBTS3UrVVFCMEJuQXlJcTBQR3VseHoxNXdpcFM0
15+
STVkcEVsalp6TnlHV04zd0dmemFPTmFBbklFbjZtVDRFWWdHVFRiUEYyL2h2bmxKaGxDbklPRGJF
16+
M3I4bFJMY0ZZaVNGQXpscEF2ZDQ2aGZYbHVveHNNT0tzUzRKd1dtVU1qSEVJMzk1OTdBbEtkZUNt
17+
SlF5OVhvL0lJTE94cWxQWVA5OTlETU5BRkJJdHlzcHZwakEzMlY1K0pBcVd1LzhwL08xeWZVb3dI
18+
ellSNitpRkNPZ3p2R2dFVUZITGowbjNDaDlPd2tEeUtkUlMxVVJ1WnlEYnZmbEdNYzYwYWllbWEz
19+
Smprd0l6U2diaHNtdzA0L3JpMzNZUHR1a3dTYkhUWEdzYm0zNFBzL1VUQXQzdDk1MG9CNWlxeHc9
20+
true:
2921
python: 2.7
22+
repo: graphql-python/graphql_ws
23+
tags: true
24+
install: pip install -U tox-travis
25+
language: python
26+
python:
27+
- 3.6
28+
- 3.5
29+
- 2.7
30+
script: tox

requirements_dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ Sphinx==1.4.8
88
PyYAML==3.11
99
pytest==2.9.2
1010
pytest-runner==2.11.1
11-
aiohttp==2.1.0
1211
gevent
1312
graphene>=2.0

tox.ini

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ envlist = py26, py27, py33, py34, py35, flake8
33

44
[travis]
55
python =
6+
3.6: py36
67
3.5: py35
7-
3.4: py34
8-
3.3: py33
98
2.7: py27
10-
2.6: py26
119

1210
[testenv:flake8]
1311
basepython=python
@@ -23,6 +21,16 @@ commands =
2321
pip install -U pip
2422
py.test --basetemp={envtmpdir}
2523

24+
[testenv:py35]
25+
deps =
26+
-r{toxinidir}/requirements_dev.txt
27+
aiohttp==2.1.0
28+
29+
[testenv:py36]
30+
deps =
31+
-r{toxinidir}/requirements_dev.txt
32+
aiohttp==2.1.0
33+
2634

2735
; If you want to make tox run the tests with the same versions, create a
2836
; requirements.txt with the pinned versions and uncomment the following lines:

0 commit comments

Comments
 (0)