File tree Expand file tree Collapse file tree 5 files changed +15
-32
lines changed
Expand file tree Collapse file tree 5 files changed +15
-32
lines changed Original file line number Diff line number Diff line change 1919.vscode /tags
2020.pytest_cache
2121.hypothesis
22- checkouts
22+ semaphore
Original file line number Diff line number Diff line change @@ -10,10 +10,7 @@ python:
1010
1111cache :
1212 pip : true
13- directories :
14- - checkouts/semaphore/target/debug/
15- - ~/.cargo/registry/
16- - ~/.rustup/
13+ cargo : true
1714
1815branches :
1916 only :
@@ -44,10 +41,8 @@ matrix:
4441 script : make travis-upload-docs
4542
4643install :
47- - curl https://sh.rustup.rs -sSf | sh -s -- -y
48- - . $HOME/.cargo/env
4944 - pip install tox
50- - sh scripts/checkout -semaphore.sh
45+ - sh scripts/download -semaphore.sh
5146
5247script :
5348 - sh scripts/runtox.sh
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ # Download the latest semaphore release for Travis
4+
5+ curl -s https://api.github.com/repos/getsentry/semaphore/releases/latest \
6+ | grep " Linux" \
7+ | cut -d : -f 2,3 \
8+ | tr -d \" \
9+ | wget -i - -O ./semaphore
10+
11+ chmod +x ./semaphore
Original file line number Diff line number Diff line change 88from sentry_sdk ._compat import reraise
99from sentry_sdk .transport import Transport
1010
11- SEMAPHORE = "./checkouts/semaphore/target/debug/ semaphore"
11+ SEMAPHORE = "./semaphore"
1212
1313if not os .path .isfile (SEMAPHORE ):
1414 SEMAPHORE = None
You can’t perform that action at this time.
0 commit comments