aboutsummaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorIvan Glushkov <[email protected]>2019-05-20 11:21:34 +0400
committerIvan Glushkov <[email protected]>2019-05-20 11:24:39 +0400
commit5e9de936e28f18bf5ba3e392fcc54502505b01a8 (patch)
treeff18ea3f61da54f2faec2b3cd63cae8f1bceb1f1 /.cirrus.yml
parentf87424e21fa04356a5c4dfbf5eb458b75583be7c (diff)
downloadrelx-5e9de936e28f18bf5ba3e392fcc54502505b01a8.tar.gz
relx-5e9de936e28f18bf5ba3e392fcc54502505b01a8.tar.bz2
relx-5e9de936e28f18bf5ba3e392fcc54502505b01a8.zip
Revert dependencies order in unit tests
The PR https://github.com/erlware/relx/pull/655 changed the behaviour, while the tests were not fixed. This commit fixes the unit tests.
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