File tree Expand file tree Collapse file tree 3 files changed +20
-20
lines changed Expand file tree Collapse file tree 3 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -75,24 +75,24 @@ jobs:
75
75
Get-ChildItem -Path .\src -Recurse -Filter *.pyx | ForEach-Object { Remove-Item $_.FullName }
76
76
Get-ChildItem -Path .\src -Recurse -Filter *.cpp | ForEach-Object { Remove-Item $_.FullName }
77
77
78
- - name: Run tests
79
- run: |
80
- Get-ChildItem -Path ".\tests\*.py" | ForEach-Object {
81
- Write-Host "Running tests in $($_.FullName)"
82
- try {
83
- # Run the Python unittest command
84
- python -m unittest $_.FullName
85
-
86
- # Check if the previous command succeeded
87
- if ($LASTEXITCODE -ne 0) {
88
- throw "Tests failed in $($_.FullName)"
89
- }
90
- } catch {
91
- # Stop the loop and return the error
92
- Write-Error $_
93
- exit 1
94
- }
95
- }
78
+ - name : Run tests
79
+ run : |
80
+ Get-ChildItem -Path ".\tests\*.py" | ForEach-Object {
81
+ Write-Host "Running tests in $($_.FullName)"
82
+ try {
83
+ # Run the Python unittest command
84
+ python -m unittest $_.FullName
85
+
86
+ # Check if the previous command succeeded
87
+ if ($LASTEXITCODE -ne 0) {
88
+ throw "Tests failed in $($_.FullName)"
89
+ }
90
+ } catch {
91
+ # Stop the loop and return the error
92
+ Write-Error $_
93
+ exit 1
94
+ }
95
+ }
96
96
97
97
- name : Build Executable
98
98
run : |
Original file line number Diff line number Diff line change 5
5
# pip-compile '.\requirements-dml.in'
6
6
#
7
7
8
- ok-script==0.0.563
8
+ ok-script==0.0.564
9
9
10
10
antlr4-python3-runtime==4.9.3
11
11
# via omegaconf
Original file line number Diff line number Diff line change 5
5
# pip-compile '.\requirements.in'
6
6
#
7
7
8
- ok-script == 0.0.563
8
+ ok-script == 0.0.564
9
9
10
10
antlr4-python3-runtime == 4.9.3
11
11
# via omegaconf
You can’t perform that action at this time.
0 commit comments