Skip to content

Commit

Permalink
Remove $PATH display and 'which python3.9'
Browse files Browse the repository at this point in the history
The 'which' made lots of things kersplodey, since 3.9 isn't
available in most linux/mac jobs, and 'which' doesn't exist
on Windows.

Learned that 'which' returns code 1 if nothing found to match.
  • Loading branch information
bskinn committed Nov 21, 2019
1 parent fa94eff commit 3ad1d89
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ jobs:
- script: 'brew update -vvv && brew install fish tcsh'
condition: and(succeeded(), eq(variables['image_name'], 'macOs'), in(variables['TOXENV'], 'py37', 'py36', 'py35', 'py34', 'py27'))
displayName: install fish and csh via brew
- script: 'echo $PATH'
displayName: show PATH
- script: 'which python3.9'
displayName: show Python 3.9 location
coverage:
with_toxenv: 'coverage' # generate .tox/.coverage, .tox/coverage.xml after test run
for_envs: [py37, py36, py35, py34, py27]
Expand Down

0 comments on commit 3ad1d89

Please sign in to comment.