forked from tianocore/edk2-pytool-library
-
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.
Transitions project maintenance, building, and distribution to the pyproject.toml file. This also allows many of the python configuration files to be moved into the pyproject.toml file themselves. Updates CI yaml steps (azure pipelines and github action) to download pip requirements via the pyproject.toml rather then a requirements file.
- Loading branch information
Showing
11 changed files
with
42 additions
and
33 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
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 |
---|---|---|
|
@@ -52,9 +52,9 @@ jobs: | |
npm install -g [email protected] | ||
npm install -g [email protected] | ||
- name: Run flake8 | ||
- name: Run ruff | ||
if: success() || failure() | ||
run: flake8 ${{ inputs.package-src }} | ||
run: ruff check ${{ inputs.package-src }} --format=github | ||
|
||
- name: Run markdownlint | ||
if: success() || failure() | ||
|
@@ -64,10 +64,6 @@ jobs: | |
if: success() || failure() | ||
run: cspell -c .cspell.json "**/*.py" "**/*.md" | ||
|
||
- name: Run pydocstyle | ||
if: success() || failure() | ||
run: pydocstyle ${{ inputs.package-src }} | ||
|
||
- name: Run mkdocs build | ||
if: success() || failure() | ||
run: mkdocs build --strict | ||
|
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 |
---|---|---|
|
@@ -13,3 +13,4 @@ build. | |
flake8.err.log | ||
/.eggs | ||
/htmlcov | ||
/.ruff_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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["charliermarsh.ruff"] | ||
} |
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
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
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