Skip to content

Commit 0570e0f

Browse files
authored
Merge pull request #49 from python-desert/only_master_and_tags
Only build master and v\d.*
2 parents 08d9dbc + 0c6abc7 commit 0570e0f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
language: python
22
os: linux
3+
branches:
4+
only:
5+
# Build tags and branches named master or starting with
6+
# 'v' followed by a digit, such as for version tags.
7+
- master
8+
- /^v\d.*$/
39
cache: pip
410
env:
511
global:
@@ -40,7 +46,7 @@ install:
4046
export PATH=$(echo $HOME/pypy3*/bin):$PATH
4147
export TOXPYTHON=$(echo $HOME/pypy3*/bin/pypy3)
4248
fi
43-
set +x
49+
set +x starting
4450
- |
4551
set -ex
4652
if [[ $TOXENV == 'check' ]]; then

0 commit comments

Comments
 (0)