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

comment about our test command

parent bb99b6fd
No related branches found
No related tags found
1 merge request!39Test with Nix instead
...@@ -113,6 +113,13 @@ jobs: ...@@ -113,6 +113,13 @@ jobs:
- run: - run:
name: "Run Test Suite" name: "Run Test Suite"
command: | command: |
# Building the package has, as a side effect, running the test
# suite. If the test suite fails, so does the build.
#
# Pass in a couple args here to control how the test suite is run
# - configure Hypothesis so it can behave appropriately in a CI
# environment (where resources are scarce, competetion with other
# tenants is high, etc) and collect coverage information.
nix-build --argstr hypothesisProfile ci --arg collectCoverage true --attr doc nix-build --argstr hypothesisProfile ci --arg collectCoverage true --attr doc
- save_cache: - save_cache:
......
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