From 456b9c12d2e168a07b0c8831cf368b8b967e0479 Mon Sep 17 00:00:00 2001 From: Vladislav Golubinov Date: Sun, 8 Nov 2020 15:26:32 +0300 Subject: [PATCH] Delete codecov.yml --- .github/workflows/codecov.yml | 41 ----------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/codecov.yml diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index 2ebf9e3..0000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: codecov - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - run: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - env: - OS: ${{ matrix.os }} - PYTHON: '3.7' - steps: - - uses: actions/checkout@master - - name: Setup Python - uses: actions/setup-python@master - with: - python-version: 3.7 - - name: Generate coverage report - run: | - pip install pytest - pip install pytest-cov - pytest --cov=./ --cov-report=xml - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml - files: ./coverage1.xml,./coverage2.xml - directory: ./coverage/reports/ - flags: unittests - env_vars: OS,PYTHON - name: codecov-umbrella - fail_ci_if_error: true - path_to_write_report: ./coverage/codecov_report.gz - verbose: true