Skip to content

Commit 052d0ea

Browse files
committed
bugfix
1 parent 73465d6 commit 052d0ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ script:
2626
- "./docs/update_apidocs.sh"
2727
- mkdir data
2828
- which nosetests
29-
- nosetests tests --with-coverage --cover-inclusive --cover-package=pySDC,tutorial --cover-html --cover-html-dir=target/doc/build/test_coverage
29+
- nosetests --with-coverage --cover-inclusive --cover-package=pySDC,tutorial --cover-html --cover-html-dir=target/doc/build/test_coverage
3030
- if [[ $PYTHON_VERSION == 3 ]]; then travis-sphinx build; fi
3131

3232
after_success:

pySDC/tutorial/step_6/C_MPI_parallelization.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ def main(cwd):
1111

1212
# Set python path once
1313
my_env = os.environ.copy()
14-
my_env['PYTHONPATH'] = '../..:.'
14+
my_env['PYTHONPATH'] = '../../..:.'
1515

1616
# set list of number of parallel steps (even)
1717
num_procs_list = [1, 2, 4, 8]
1818

1919
# set up new/empty file for output
2020
fname = 'step_6_C1_out.txt'
21-
f = open(cwd + '/../../' + fname, 'w')
21+
f = open(cwd + '/../../../' + fname, 'w')
2222
f.close()
2323

2424
# run code with different number of MPI processes
@@ -35,7 +35,7 @@ def main(cwd):
3535

3636
# set up new/empty file for output
3737
fname = 'step_6_C2_out.txt'
38-
f = open(cwd + '/../../' + fname, 'w')
38+
f = open(cwd + '/../../../' + fname, 'w')
3939
f.close()
4040

4141
# run code with different number of MPI processes

0 commit comments

Comments
 (0)