Skip to content

Commit 372760d

Browse files
Switch from path to module name to fix Travis CI
So I wound up breaking the Travis CI run, which until a few commits ago was a bare inline call `assay --batch skyfield.tests`. When I switched it to an invocation of `test-code.sh`, to unify the testing experience and also to have a central place to put a call to pyflakes, I was inadvertently also switching to `assay --batch skyfield.tests` which does *not* work from another directory. So this should fix it.
1 parent 7f944a0 commit 372760d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test-code.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ then
2121
d=$(python -c 'import skyfield as s; print(s.__file__.rsplit("/", 1)[0])')
2222
pyflakes "$d"/skyfield/*.py
2323
fi
24-
exec assay --batch skyfield/tests
24+
exec assay --batch skyfield.tests

0 commit comments

Comments
 (0)