forked from pypa/packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (30 loc) · 971 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: python
cache: pip
python: 3.8
matrix:
include:
- python: pypy3
env: NOXSESSION=tests-pypy3
- python: 3.6
env: NOXSESSION=tests-3.6
- python: 3.7
env: NOXSESSION=tests-3.7
- python: 3.8
env: NOXSESSION=tests-3.8
- env: NOXSESSION=lint
- env: NOXSESSION=docs
install:
- pyenv global 3.7.1
- python3.7 -m pip install nox
script:
- python3.7 -m nox
notifications:
irc:
channels:
# This is set to a secure variable to prevent forks from notifying the
# IRC channel whenever they fail a build. This can be removed when travis
# implements https://github.com/travis-ci/travis-ci/issues/1094.
# The actual value here is: irc.freenode.org#pypa-dev
- secure: "Br6aYBYkjL17fBZ6+AczCkaBMWQAY6To8IH4zqhHrORXAWq4zeuC4VyCZ4MXmDzk0WbA3h3Ea7u9kodUf1sVK1h0q7HX66p8qmFyTncQoLFgo2LF/x1aU1FGWKDDSX5K6qKOzUKrHUhQyVq+uAuRVUm7bJhJL0/viPwEoh+bONo="
use_notice: true
skip_join: true