From 8af0b2028e68bea129c5319e12d27fe778692c1a Mon Sep 17 00:00:00 2001 From: Elia Schito Date: Tue, 17 Oct 2023 11:39:28 +0200 Subject: [PATCH] Remove dev_tools from the CI --- .circleci/config.yml | 13 ------------- dev_tools/README.md | 3 --- 2 files changed, 16 deletions(-) delete mode 100644 dev_tools/README.md diff --git a/.circleci/config.yml b/.circleci/config.yml index cabe14a125e..bcbdc5c5784 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -313,18 +313,6 @@ jobs: - setup - test_with_coverage - dev_tools: - docker: - - image: cimg/ruby:3.1 - steps: - - checkout - - run: - name: "Test development tools" - command: | - cd dev_tools - bundle - bundle exec rspec - workflows: build: jobs: @@ -348,4 +336,3 @@ workflows: - test_solidus: name: *name matrix: { parameters: { rails: ['7.0'], ruby: ['3.2'], database: ['sqlite'], paperclip: [false] } } - - dev_tools diff --git a/dev_tools/README.md b/dev_tools/README.md deleted file mode 100644 index 48c40f3b35e..00000000000 --- a/dev_tools/README.md +++ /dev/null @@ -1,3 +0,0 @@ -This folder contains development tools that the Solidus Core Team uses to speed -up processes. They're not intended to be used by other contributors or app -developers.