Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Update error message in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Nov 10, 2018
1 parent 793782a commit e641cc5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Expand Up @@ -287,7 +287,7 @@ def __len__(self):
found = os.listdir(os.path.dirname(r))
found2 = os.listdir(os.path.dirname(r.replace("build", "source").replace("/html", "")))
raise FileNotFoundError(
"Unable to find '{0}' in\n{1}----\n{2}".format(
"Unable to find '{0}' in\n{1}\n----\n{2}".format(
r, "\n".join(sorted(found)), "\n".join(sorted(found2))))

history = os.path.join(
Expand Down
7 changes: 7 additions & 0 deletions appveyor.yml
Expand Up @@ -56,3 +56,10 @@ after_test:
artifacts:
- path: dist
name: pyquickhelper

cache:
# Use the appveyor cache to avoid re-downloading large archives such
# the MKL numpy and scipy wheels mirrored on a rackspace cloud
# container, speed up the appveyor jobs and reduce bandwidth.
# Tips taken from scikit-learn.
- '%APPDATA%\pip\Cache'

0 comments on commit e641cc5

Please sign in to comment.