Skip to content

Commit dd8fc10

Browse files
authored
chore(ci): fix codecov configuration (#165)
Slightly broken in #164
1 parent f0f7d56 commit dd8fc10

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# To validate this config:
22
#
3-
# cat codecov.yml | curl --data-binary @- https://codecov.io/validate
3+
# cat .codecov.yml | curl --data-binary @- https://codecov.io/validate
44
#
55
# See https://docs.codecov.io/docs for more info
66

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
run: make testci
3535

3636
- uses: codecov/codecov-action@v3
37-
with:
38-
files: ./coverage.out
3937
if: ${{ matrix.go-version == 'stable' }}
4038

4139
lint:

httpbin/websocket/websocket_autobahn_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var defaultExcludedTestCases = []string{
4141
func TestWebSocketServer(t *testing.T) {
4242
t.Parallel()
4343

44-
if os.Getenv("AUTOBAHN_TESTS") == "" {
44+
if os.Getenv("AUTOBAHN_TESTS") != "1" {
4545
t.Skipf("set AUTOBAHN_TESTS=1 to run autobahn integration tests")
4646
}
4747

0 commit comments

Comments
 (0)