Skip to content

Commit 0951647

Browse files
committed
Complete move from test_data/output to regression_test*
1 parent ace51a6 commit 0951647

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $(NOSE):
1919
.PHONY: regression_test
2020
regression_test:
2121
$(PY) src/tests/regression.py
22-
$(PY) -m webbrowser src/tests/test_output/index.html
22+
$(PY) -m webbrowser src/tests/regression_test_output/index.html
2323

2424

2525
# #######

src/tests/helpers.py

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

33

44
SAMPLES = os.path.join(os.path.dirname(__file__), 'samples')
5-
REGRESSION_DATA = os.path.join(os.path.dirname(__file__), 'test_data')
5+
REGRESSION_DATA = os.path.join(os.path.dirname(__file__), 'regression_test_data')
66

77

88
def load_sample(filename):

src/tests/regression.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
YAML_EXTENSION = '.yaml'
3030

3131
TESTDIR = os.path.dirname(__file__)
32-
TEST_DATA_PATH = os.path.join(TESTDIR, 'test_data')
33-
TEST_OUTPUT_PATH = os.path.join(TESTDIR, 'test_output')
32+
TEST_DATA_PATH = os.path.join(TESTDIR, 'regression_test_data')
33+
TEST_OUTPUT_PATH = os.path.join(TESTDIR, 'regression_test_output')
3434
TEST_SUMMARY_PATH = os.path.join(TEST_OUTPUT_PATH, 'index.html')
3535

3636
SUMMARY_CSS = '''

0 commit comments

Comments
 (0)