File tree Expand file tree Collapse file tree 3 files changed +30
-5
lines changed Expand file tree Collapse file tree 3 files changed +30
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : [push, pull_request]
3
+
4
+ jobs :
5
+ build :
6
+ runs-on : ubuntu-latest
7
+
8
+ steps :
9
+ -
10
+ name : Checkout
11
+ uses : actions/checkout@v2.3.4
12
+ -
13
+ name : Build base image
14
+ uses : docker/build-push-action@v2.7.0
15
+ with :
16
+ context : .
17
+ tags : splash
18
+ -
19
+ name : Build tests image
20
+ uses : docker/build-push-action@v2.7.0
21
+ with :
22
+ context : dockerfiles/tests
23
+ tags : splash-tests
24
+ -
25
+ name : Run tests
26
+ shell : ' script --return --quiet --command "bash {0}"'
27
+ run : |
28
+ docker run -it splash-tests
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ _PYTHON=python3
3
3
4
4
install_python_deps () {
5
5
# Install python-level dependencies.
6
- ${_PYTHON} -m pip install -U pip setuptools six && \
6
+ ${_PYTHON} -m pip install -U pip setuptools==57.5.0 six && \
7
7
${_PYTHON} -m pip install \
8
8
qt5reactor==0.5 \
9
9
psutil==5.0.0 \
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- py.test --cov=splash --doctest-modules --durations=50 " $@ " && \
3
- if [ -n " ${TRAVIS} " ]; then
4
- codecov
5
- fi ;
2
+ py.test --cov=splash --doctest-modules --durations=50 " $@ "
You can’t perform that action at this time.
0 commit comments