From df4d02dab2c3101abfa7dac0431b5eac2299ea3a Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sat, 6 Mar 2021 00:16:59 +0100 Subject: [PATCH] Add step to install test report converter --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b811e5f..aa33c95 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,9 +54,13 @@ jobs: - dart-dependencies-{{ checksum "pubspec.lock" }} - dart-dependencies- + - run: + name: Install test report converter tool + command: pub global activate junitreport + - run: name: Run tests - command: flutter test | tojunit --output test-results + command: flutter test | .pub-cache/bin/tojunit --output test-results - store_test_results: path: test-results