mirror of
https://codeberg.org/scip/tablizer.git
synced 2025-12-17 12:31:06 +01:00
tests don't work on windows
This commit is contained in:
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
@@ -5,7 +5,9 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
version: ['1.22']
|
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
|
name: Build
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
# reading from file and matching with lowercase words
|
# 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
|
stdout grafana.*Runn
|
||||||
|
|
||||||
# matching mixed case
|
# 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
|
stdout grafana.*Runn
|
||||||
|
|
||||||
# matching using numbers
|
# 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
|
stdout grafana.*Runn
|
||||||
|
|
||||||
# matching using regex
|
# 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
|
stdout grafana.*Runn
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user