We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate running Behat tests in parallel. Travis containers have 2 cores. In theory we could run some tests in parallel.
1: Investigate if this is possible 2: See if there are real world performance benefits.
The text was updated successfully, but these errors were encountered:
This seems like something that should be done per project, as needed. This is possible using Travis CI matrixes.
For example, add the following to .travis.yml:
env: - BEHAT_TAGS='javascript' - BEHAT_TAGS='~javascript' script: ... - blt ci:build:validate:test -Dcreate_alias=false -Dbehat.run-server=true -Dbehat.launch-phantom=true -Dblt.verbose=true -Dbehat.tags="$BEHAT_TAGS"
This would execute two parallel builds on Travis CI, one for each value of $BEHAT_TAGS.
Sorry, something went wrong.
No branches or pull requests
Investigate running Behat tests in parallel. Travis containers have 2 cores. In theory we could run some tests in parallel.
1: Investigate if this is possible
2: See if there are real world performance benefits.
The text was updated successfully, but these errors were encountered: