Skip to content

Commit 631a2f5

Browse files
committed
Move ci scripts into a ci.sh file
1 parent 79a431b commit 631a2f5

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,4 @@ install:
1515
- poetry install
1616

1717
script:
18-
- poetry run pyflakes ui/__init__.py ui/tests/test_ui.py
19-
- poetry run pytest
20-
- poetry run sphinx-build -W docs docs/_build/html
18+
- bash ci.sh

ci.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
set -x
2+
set -e
3+
4+
poetry run pyflakes ui/__init__.py ui/tests/test_ui.py
5+
poetry run pytest
6+
poetry run sphinx-build -W docs docs/_build/html

0 commit comments

Comments
 (0)