Skip to content
Snippets Groups Projects
Commit 1d3c76d3 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Try to speed up the runs with concurrency

parent 0139995c
No related branches found
No related tags found
1 merge request!183CircleCI-based macOS CI
...@@ -125,8 +125,11 @@ jobs: ...@@ -125,8 +125,11 @@ jobs:
# The test suite might leak file descriptors. macOS defaults to a # The test suite might leak file descriptors. macOS defaults to a
# limit of 256. This should be fixed, but not now ... # limit of 256. This should be fixed, but not now ...
ulimit -Sn 1024 ulimit -Sn 1024
# And finally we can run the tests. # And finally we can run the tests. We'll run them with 4 jobs
venv/bin/python -m twisted.trial --rterrors _zkapauthorizer # because the resource class documented at
# https://support.circleci.com/hc/en-us/articles/360009144794-macOS-resources
# says "Medium: 4 vCPUs, 8GB RAM".
venv/bin/python -m twisted.trial --jobs 4 --rterrors _zkapauthorizer
linux-tests: linux-tests:
docker: docker:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment