Skip to content

Commit

Permalink
Let's try again
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Jul 2, 2020
1 parent 000f926 commit 638abdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr_master_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,12 @@ jobs:
if: matrix.TARGET == 'osx'
run: |
PYTHON_DIR=`dirname $PYTHON_EXE`
echo $PYTHON_DIR
echo "::set-env name=PATH::$PYTHON_DIR:$PATH"
which python
- name: Install Pyutilib
run: |
echo $PATH
which python
$PYTHON_EXE setup.py develop
- name: Set up coverage tracking
Expand Down
2 changes: 1 addition & 1 deletion doc/workflow/examples/test_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Test(unittest.TestCase):
for file in glob.glob(datadir+'*.sh'):
bname = basename(file)
name=bname.split('.')[0]
Test.add_baseline_test(cmd='cd %s; /usr/bin/env sh %s' % (datadir, file), baseline=datadir+name+'.txt', name=name, filter=filter)
Test.add_baseline_test(cmd='cd %s; /usr/bin/env bash %s' % (datadir, file), baseline=datadir+name+'.txt', name=name, filter=filter)

# Execute the tests
if __name__ == '__main__':
Expand Down

0 comments on commit 638abdb

Please sign in to comment.