Skip to content

Commit

Permalink
Run Python and Go system tests separately
Browse files Browse the repository at this point in the history
`make docker-system-tests` messes with the
permissions of the build directory, so run
it independently.

Also convert CRLF for *.json
  • Loading branch information
axw committed Jun 22, 2023
1 parent 1ae12ca commit 27684fc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
CHANGELOG.asciidoc merge=union
internal/otel_collector linguist-generated=true
**.ndjson text eol=lf
**.json text eol=lf
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
cache: true
- run: go test -v ./...

system-test:
python-system-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -47,4 +47,14 @@ jobs:
go-version-file: .go-version
cache: true
- run: make apm-server docker-system-tests

go-system-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: .go-version
cache: true
- run: make apm-server
- run: cd systemtest && go test -v ./...

0 comments on commit 27684fc

Please sign in to comment.