Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ef20a3b

Browse files
committed
Move visual_tests into tools.
1 parent a89d7d2 commit ef20a3b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ test_script:
139139
- if x%USE_PYTEST% == xyes py.test %PYTEST_ARGS%
140140
- if x%USE_PYTEST% == xno python tests.py %PYTEST_ARGS%
141141
# Generate a html for visual tests
142-
- python visual_tests.py --no-browser
142+
- python tools/visualize_tests.py --no-browser
143143
- pip install codecov
144144
- codecov -e PYTHON_VERSION PLATFORM
145145

@@ -180,7 +180,7 @@ artifacts:
180180
on_finish:
181181

182182
on_failure:
183-
- python visual_tests.py --no-browser
183+
- python tools/visualize_tests.py --no-browser
184184
- echo zipping images after a failure...
185185
- 7z a result_images.zip result_images\ |grep -v "Compressing"
186186
- appveyor PushArtifact result_images.zip

tools/test_triage.py renamed to tools/triage_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
If you ran the tests from the top-level of a source checkout, simply run:
1313
14-
python tools/test_triage.py
14+
python tools/triage_tests.py
1515
1616
Otherwise, you can manually select the location of `result_images`
1717
on the commandline.

visual_tests.py renamed to tools/visualize_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This builds a html page of all images from the image comparison tests
44
# and opens that page in the browser.
55
#
6-
# $ python visual_tests.py
6+
# $ python tools/visualize_tests.py
77
#
88

99
import argparse

0 commit comments

Comments
 (0)