aboutsummaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2019-05-20 08:30:15 -0600
committerGitHub <[email protected]>2019-05-20 08:30:15 -0600
commit3420d80940eec374739d465c2f533d4917f83f42 (patch)
treeff18ea3f61da54f2faec2b3cd63cae8f1bceb1f1 /.cirrus.yml
parentf87424e21fa04356a5c4dfbf5eb458b75583be7c (diff)
parent5e9de936e28f18bf5ba3e392fcc54502505b01a8 (diff)
downloadrelx-3420d80940eec374739d465c2f533d4917f83f42.tar.gz
relx-3420d80940eec374739d465c2f533d4917f83f42.tar.bz2
relx-3420d80940eec374739d465c2f533d4917f83f42.zip
Merge pull request #715 from gliush/fix-eunit-tests
Fix eunit tests and add them to the CI pipeline
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index b49a2b6..8e693dd 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -8,7 +8,7 @@ test_task:
- image: erlang:19
- image: erlang:18
test_script: |
- rebar3 ct
+ rebar3 eunit && rebar3 ct
always:
junit_artifacts:
path: "_build/test/logs/ct_run.*/junit_report.xml"
@@ -20,4 +20,4 @@ osx_check_task:
test_script: |
wget https://s3.amazonaws.com/rebar3/rebar3
chmod +x rebar3
- ./rebar3 ct
+ ./rebar3 eunit && ./rebar3 ct