diff --git a/.circleci/config.yml b/.circleci/config.yml index 66bc1993..04379fb1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,7 +25,7 @@ commands: - run: name: command to run e2e tests command: pub run test test/e2e --reporter json | tojunit --output test-results/dart-tests/device_widgets_e2e_tests-report.xml - all-tests: + run-test-coverage: description: "Run all tests" steps: - run: @@ -72,6 +72,8 @@ jobs: - run: name: Make folder for test results command: mkdir -p test-results/dart-tests - - all-tests + - unit-tests + - e2e-tests + - run-test-coverage - store_test_results: path: test-results