summaryrefslogtreecommitdiff
path: root/_travis/run.sh
diff options
context:
space:
mode:
authorQuentin Pradet <quentin.pradet@gmail.com>2020-04-01 20:12:30 +0400
committerQuentin Pradet <quentin.pradet@gmail.com>2020-04-01 20:12:30 +0400
commit253fb384f1ac83721088fd9e4896557e3ddad84f (patch)
treeee36c6b2e05bb9234175db071eca0335c549a141 /_travis/run.sh
parenta9508d8d8ac58ed95bf06d8970382664af4e91e3 (diff)
downloadurllib3-macos-github-actions.tar.gz
Switch macOS CI to GitHub Actionsmacos-github-actions
Diffstat (limited to '_travis/run.sh')
-rwxr-xr-x_travis/run.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/_travis/run.sh b/_travis/run.sh
index b8a2264c..36feb1b1 100755
--- a/_travis/run.sh
+++ b/_travis/run.sh
@@ -3,12 +3,7 @@
set -exo pipefail
if [ -n "${NOX_SESSION}" ]; then
- if [[ "$(uname -s)" == 'Darwin' ]]; then
- # Explicitly use python3 on macOS as `nox` is not in the PATH
- python3 -m nox -s "${NOX_SESSION}"
- else
- nox -s "${NOX_SESSION}"
- fi
+ nox -s "${NOX_SESSION}"
else
downstream_script="${TRAVIS_BUILD_DIR}/_travis/downstream/${DOWNSTREAM}.sh"
if [ ! -x "$downstream_script" ]; then