Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove codecov and test coverage file #584

Merged
merged 1 commit into from Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Expand Up @@ -54,14 +54,6 @@ jobs:
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: make test-unit

# only report code coverage on linux
- name: Upload coverage report
if: ${{ matrix.platform == 'ubuntu-latest' }}
uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378
with:
files: ./cover.txt
name: testcontainers-go-${{ matrix.go-version }}

- name: modTidy e2e tests
if: ${{ matrix.platform == 'ubuntu-latest' }}
run: make -C e2e tools-tidy
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -10,5 +10,4 @@ src/pip-delete-this-directory.txt
.idea/
.DS_Store

cover.txt
TEST-*.xml
3 changes: 1 addition & 2 deletions Makefile
Expand Up @@ -9,8 +9,7 @@ test-unit:
--format short-verbose \
--rerun-fails=5 \
--packages="./..." \
--junitfile TEST-unit.xml \
-- -coverprofile=cover.txt
--junitfile TEST-unit.xml

.PHONY: test-e2e
test-e2e:
Expand Down