Skip to content

Commit

Permalink
More on coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Feb 1, 2021
1 parent 2c293e4 commit 830723b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/run-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
testCommand:
description: Do not modify.
required: false
default: "-m zope.testrunner --test-path=src --color -v --slow-test=3"
default: "-m zope.testrunner --package relstorage --path src --color -v --slow-test=3"
runs:
using: "composite"
steps:
Expand All @@ -17,7 +17,7 @@ runs:
run: |
echo "Using coverage? ${{ inputs.useCoverage }}"
echo "::group::gevent concurrency"
CMD=".travis/zope_testrunner_gevent.py -t checkBTreesLengthStress -t check7 -t check2 -t BlobCache -t Switches --layer gevent"
CMD=".travis/zope_testrunner_gevent.py --package relstorage -t checkBTreesLengthStress -t check7 -t check2 -t BlobCache -t Switches --layer gevent"
if [ "${{ inputs.useCoverage }}" = "true" ]; then
coverage run -p --concurrency=greenlet $CMD
else
Expand Down
2 changes: 1 addition & 1 deletion .travis/zope_testrunner_gevent.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

sys.argv[:] = [
'zope-testrunner',
'--test-path=src',
'--path=src',
'-v',
'--color',
'--keepbytecode',
Expand Down

0 comments on commit 830723b

Please sign in to comment.