-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
enhancementNew feature or requestNew feature or request
Description
For test performance, we split our suite into acceptance
and unit
tests. We do this because acceptance
spec require static assets to be built, which takes a decent amount of time which, whereas unit
specs can be run instantly. We accomplish this with RSpec tags. For example, here is how we run our acceptance
tests using rspec-queue:
bin/_rspec-queue \
--namespace acceptance \
--tag capybara_feature \
--tag type:feature \
--tag type:request \
--tag js \
--tag webpack \
--format=doc \
--format=RspecJunitFormatter \
--out="tmp/test_results/rspec_acceptance/results-$CIRCLE_NODE_INDEX.xml" \
--requeue-tolerance=0.05 \
--max-requeues="$CIRCLE_NODE_TOTAL"
In order to use rspecq, we need to mimic this functionality. As of now, it does not seem like rspecq supports example filtering, is this right? If not, would it be possible to support this use case?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request