-
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.
CI/CD fixes so tests can finally pass (#14)
* Messing with CI/CD * Messing with CI/CD * Simplified req's and eliminated version conflict * CI/CD tweaks * CI/CD tweaks * CI/CD tweaks * CI/CD tweaks * CI/CD tweaks * Type annotation tweaks * Type annotation tweaks * Type annotation tweaks * CI/CD tweaks * CI/CD tweaks * Full code coverage --------- Co-authored-by: David Maxson <david.maxson@rearc.io>
- Loading branch information
Showing
8 changed files
with
196 additions
and
992 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,42 +1,27 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
additional_dependencies: [ 'click!=8.1.0' ] | ||
|
||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
# Ruff version. | ||
rev: 'v0.4.4' | ||
hooks: | ||
- id: ruff | ||
args: [ "--fix" ] | ||
|
||
- repo: local | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: "v4.6.0" | ||
hooks: | ||
- id: check-added-large-files | ||
name: Check for added large files | ||
entry: check-added-large-files | ||
language: system | ||
- id: check-toml | ||
name: Check Toml | ||
entry: check-toml | ||
language: system | ||
types: [ toml ] | ||
- id: check-yaml | ||
name: Check Yaml | ||
entry: check-yaml | ||
language: system | ||
types: [ yaml ] | ||
- id: end-of-file-fixer | ||
name: Fix End of Files | ||
entry: end-of-file-fixer | ||
language: system | ||
types: [ text ] | ||
stages: [ commit, push, manual ] | ||
- id: trailing-whitespace | ||
name: Trim Trailing Whitespace | ||
entry: trailing-whitespace-fixer | ||
language: system | ||
types: [ text ] | ||
stages: [ commit, push, manual ] | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
additional_dependencies: [ 'click!=8.1.0' ] | ||
|
||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: 'v0.4.7' | ||
hooks: | ||
- id: ruff | ||
args: [ "--fix" ] |
Oops, something went wrong.