Skip to content

Commit

Permalink
fix(ci): actually only run tests on non-docs changes (gatsbyjs#10287)
Browse files Browse the repository at this point in the history
Previously, this was mostly working (see
gatsbyjs#9889 where the unit tests are
not run, but the e2e tests are run), but as is evident, the e2e tests
are still run.

This is because the "merging" of template inclusions doesn't work quite
like we'd expect, so need to iron that out. This should iron it out!
  • Loading branch information
DSchau authored and gpetrioli committed Jan 22, 2019
1 parent b7c10b3 commit 387bcf0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ aliases:
- run: yarn jest -w 1

e2e-test-workflow: &e2e-test-workflow
<<: *ignore_master
<<: *ignore_docs
filters:
branches:
ignore:
- master
- /docs.+/
- /blog.+/
requires:
- bootstrap

Expand Down

0 comments on commit 387bcf0

Please sign in to comment.