Skip to content

Commit 00ff6a8

Browse files
committed
fixed data directory issue (I hope)
1 parent f5870c7 commit 00ff6a8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ install:
2424

2525
script:
2626
- "./docs/update_apidocs.sh"
27-
- mkdir data
2827
- which nosetests
2928
# - nosetests --with-coverage --cover-erase --cover-inclusive --cover-package=pySDC/core,pySDC/implementations,pySDC/helpers,pySDC/tutorial --cover-html --cover-html-dir=target/doc/build/test_coverage pySDC/tests
3029
# - if [[ $PYTHON_VERSION == 3 ]]; then travis-sphinx -n build; fi

pySDC/tests/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
__author__ = 'robert'
1+
import os
2+
3+
def setUp(self):
4+
if not os.path.exists('data'):
5+
os.makedirs('data')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='pySDC',
8-
version='2.1.3',
8+
version='2.1.4',
99
description='A Python implementation of spectral deferred correction methods and the likes',
1010
license="BSD-2",
1111
long_description=long_description,

0 commit comments

Comments
 (0)