Skip to content

Commit

Permalink
tests don't work on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas von Dein authored and TLINDEN committed Jan 14, 2025
1 parent 53cf1e2 commit 323c070
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ jobs:
strategy:
matrix:
version: ['1.22']
os: [ubuntu-latest, windows-latest, macos-latest]
# windows-latest removed, see:
# https://github.com/rogpeppe/go-internal/issues/284
os: [ubuntu-latest, macos-latest]
name: Build
runs-on: ${{ matrix.os }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions t/test-csv.txtar
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# reading from file and matching with lowercase words
exec tablizer$exe -c name,status -r testtable.csv -s,
exec tablizer -c name,status -r testtable.csv -s,
stdout grafana.*Runn

# matching mixed case
exec tablizer$exe -c NAME,staTUS -r testtable.csv -s,
exec tablizer -c NAME,staTUS -r testtable.csv -s,
stdout grafana.*Runn

# matching using numbers
exec tablizer$exe -c 1,3 -r testtable.csv -s,
exec tablizer -c 1,3 -r testtable.csv -s,
stdout grafana.*Runn

# matching using regex
exec tablizer$exe -c 'na.*,stat.' -r testtable.csv -s,
exec tablizer -c 'na.*,stat.' -r testtable.csv -s,
stdout grafana.*Runn


Expand Down

0 comments on commit 323c070

Please sign in to comment.