summaryrefslogtreecommitdiff
path: root/_travis/run.sh
diff options
context:
space:
mode:
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