Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request
Description
The workflow which was being used to run the tests and create the coverage report was causing the issue described in #71, as it was attempting to run
sudo apt-get update || true
, which is a linux command, on jobs running macos.To fix this, I have made the following changes:
The new workflow does the following:
tests/requirements.txt
);pytest_cpus
environment variable inside the workflow file;pytest_cov_dir
environment variable inside the workflow file;test/requirements.txt
where the requirements for running the tests are stored, these requirements beingpytest
, the used extensionspytest-xdist
andpytest-cov
andcoverage
;sys.path
;import dgmr
to run the tests;How Has This Been Tested?
I've tested this action on my fork of the repository.
If you navigate to the actions page you can see that the action runs successfully and that the tests are run correctly.
Checklist: