Skip to content

Commit

Permalink
Run end-to-end tests only on the master branch (#726)
Browse files Browse the repository at this point in the history
* Run end-to-end tests only on the master branch

Our end-to-end tests are costly, but not very rigorous, so they rarely (if ever) catch any failures, but they slow down our development workflow. This change skips the end-to-end tests on pull requests and limits them to the master branch.

This has the downside that we'll notice build failures later, but I think this happens so infrequently that it's not a problem. We can revert it later if it becomes a problem.

* Fix branch specifier in CircleCI
mtlynch authored Jun 10, 2021
1 parent 42c3768 commit 00d98c5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -63,4 +63,7 @@ workflows:
- check_bash
- build_python
- format_frontend
- e2e
- e2e:
filters:
branches:
only: master

0 comments on commit 00d98c5

Please sign in to comment.