Skip to content

Commit 3b6f727

Browse files
authored
Setting up CI and release verification for Python 3.6 (#81)
1 parent 7918ea9 commit 3b6f727

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ python:
33
- "2.7"
44
- "3.3"
55
- "3.5"
6+
- "3.6"
67
# command to install dependencies
78
install: "pip install -r requirements.txt"
89
before_script:

CONTRIBUTING.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,6 @@ tox
223223
This command will read the list of target environments from `tox.ini`, and execute tests in each of
224224
those environments. It will also generate a code coverage report at the end of the execution.
225225

226-
```
227-
pyenv local 2.7.6 3.3.0 pypy2-5.6.0
228-
```
229-
230226
### Repo Organization
231227

232228
Here are some highlights of the directory structure and notable source files
@@ -235,6 +231,7 @@ Here are some highlights of the directory structure and notable source files
235231
* `integration/` - Integration tests.
236232
* `tests/` - Unit tests.
237233
* `data/` - Provides mocks for several variables as well as mock service account keys.
234+
* `scripts/` - A collection of shell scripts used to create and verify releases.
238235
* `.github/` - Contribution instructions as well as issue and pull request templates.
239236
* `lint.sh` - Runs pylint to check for code quality.
240237
* `.pylintrc` - Default configuration for pylint.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27,py33,py35,pypy,cover
7+
envlist = py27,py33,py35,py36,pypy,cover
88

99
[testenv]
1010
commands = pytest

0 commit comments

Comments
 (0)