Skip to content

Commit

Permalink
Disabling windows CI
Browse files Browse the repository at this point in the history
Windows support in 3.0 will have to be a follow-on.
  • Loading branch information
thirtytwobits committed Oct 8, 2024
1 parent 396bd0b commit f342014
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ jobs:
-Dsonar.python.coverage.reportPaths=.tox/report/tmp/coverage.xml
-Dsonar.python.xunit.reportPath=.tox/py310-test/tmp/xunit-result.xml
compat-test-python3-windows-and-mac:
compat-test-python3-mac:
strategy:
matrix:
python3-version: ['11','12']
python3-platform: ['windows-latest', 'macos-latest']
python3-platform: ['macos-latest']
runs-on: ${{ matrix.python3-platform }}
needs: test
steps:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"python.testing.cwd": "${workspaceFolder}",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["-vv"],
"python.testing.pytestArgs": ["-v"],
"pylint.args": [
"--rcfile=${workspaceFolder}/tox.ini"
],
Expand Down
4 changes: 2 additions & 2 deletions src/nunavut/cli/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _parse_target_paths(
"/two/to/file.dsdl",
"three/path/four:to/file.dsdl",
"/five/path/six:to/file.dsdl",
"seven/path/eight\\:to/file.dsdl",
"seven/path/eight\\\\:to/file.dsdl",
"/nine/path/ten/:to/file.dsdl",
],
False,
Expand All @@ -225,7 +225,7 @@ def _parse_target_paths(
assert Path("/two/to/file.dsdl") in target_files
assert Path("four/to/file.dsdl") in target_files
assert Path("six/to/file.dsdl") in target_files
assert Path("seven/path/eight\\:to/file.dsdl") in target_files
assert Path("seven/path/eight\\\\:to/file.dsdl") in target_files
assert Path("ten/to/file.dsdl") in target_files
# Happy path: default root path, no dependencies
Expand Down
4 changes: 2 additions & 2 deletions src/nunavut/lang/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class TokenEncoder:
token_encoding_rules_by_identifier_type = {
'all':
[
'(^\\d{1})|([^a-zA-Z0-9_]+)'
'(^\\\\d{1})|([^a-zA-Z0-9_]+)'
]
}
whitespace_encoding_char = '_'
Expand Down Expand Up @@ -272,7 +272,7 @@ class TokenEncoder:
token_encoding_rules_by_identifier_type = {
'all':
[
'(^\\d{1})|([^a-zA-Z0-9_]+)',
'(^\\\\d{1})|([^a-zA-Z0-9_]+)',
'^(__)|(^(_)[A-Z])'
]
}
Expand Down

0 comments on commit f342014

Please sign in to comment.