From 72e1c494a52bdb5edd4d307a9da4f991ef9e2ac7 Mon Sep 17 00:00:00 2001 From: Jeremy Green Date: Wed, 9 Aug 2023 13:45:21 -0500 Subject: [PATCH] We should run the super_scaffolding_partial_test as well Previously we could introduce changes in `core` that would break tests in the starter repo, but that wouldn't show up as failures in `core`. This was due to the fact that we were running more tests in the starter repo than we were runnig here. This PR makes it so that we run the extra tests so that we can spot test failures here. --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index e7a36f5b0..a5bcb159c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -139,6 +139,9 @@ jobs: - run: name: 'Run Super Scaffolding Test' command: "bundle exec rails test test/system/super_scaffolding_test.rb" + - run: + name: 'Run Super Scaffolding Partial Test' + command: 'bundle exec rails test test/system/super_scaffolding_partial_test.rb' workflows: version: 2