-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷🏻 Adding Mutation Testing to CI/CD Process (#27)
* Adding mutation tests to pipeline * Updating gitignore for mutmut files * Updating mutmut to not show progress during pipeline run * Updating mutmut to use CI options * Setting pipeline to be 3.11 * Update action versions to v4 * Using cache action to access across build * Updating cache emoji * Fixing caching actions * Fixing branch name * Fixing typo * Trying different environment variable * Update emoji * Fixing key path * Using hash of files for cache key * Fixing hash path * Fixing save path * Update cicd.yaml * Update cicd.yaml * Update cicd.yaml * Rename mutation testing stage
- Loading branch information
Showing
3 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -180,4 +180,7 @@ docs/.env | |
docs/.env.production | ||
|
||
# macOS-specific files | ||
docs/.DS_Store | ||
docs/.DS_Store | ||
|
||
html/ | ||
.mutmut-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ assertpy~=1.1.0 | |
pytest==7.4.3 | ||
pytest-cov==4.1.0 | ||
setuptools==68.2.2 | ||
flake8~=6.1.0 | ||
flake8~=6.1.0 | ||
mutmut~=2.4.4 |