Skip to content

Commit

Permalink
ci: Test on windows to try to catch failures
Browse files Browse the repository at this point in the history
  • Loading branch information
nfelt14 committed Aug 30, 2024
1 parent add2a8a commit 52bb524
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-test-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
publish-test-results:
uses: ./.github/workflows/_reusable-publish-test-results.yml
with:
operating-systems-array: '["ubuntu"]' # this needs to match the operating-systems-array in the test-code.yml file
operating-systems-array: '["ubuntu", "windows"]' # this needs to match the operating-systems-array in the test-code.yml file
permissions:
checks: write
pull-requests: write
2 changes: 1 addition & 1 deletion .github/workflows/test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: ./.github/workflows/_reusable-test-code.yml
with:
repo-name: tektronix/python-package-ci-cd
operating-systems-array: '["ubuntu"]' # this needs to match the operating-systems-array in the publish-test-results.yml file
operating-systems-array: '["ubuntu", "windows"]' # this needs to match the operating-systems-array in the publish-test-results.yml file
python-versions-array: '["3.12"]' # this needs to match the [tool.poetry.dependencies.python] version in the pyproject.toml file
upload-to-codecov: true
secrets:
Expand Down
1 change: 0 additions & 1 deletion doc_config/macros.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from mkdocs_macros.plugin import MacrosPlugin # pyright: ignore[reportMissingTypeStubs]

NEWLINE_AND_TAB = "\n "
CONVERSION_PATTERN = re.compile(
r"> \[!(NOTE|TIP|IMPORTANT|WARNING|CAUTION|DANGER)]\s*>\s*(.*?)(?=\n[^>]|$)",
re.IGNORECASE | re.DOTALL,
Expand Down

0 comments on commit 52bb524

Please sign in to comment.