From 5cbf544a91c08d11fd92b2215a580b3c81e016e2 Mon Sep 17 00:00:00 2001 From: Christopher Byrd Date: Wed, 3 Apr 2024 12:10:43 -0700 Subject: [PATCH] nit nit --- .github/workflows/main.yml | 6 ++---- .gitignore | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9002a01..ef2df83 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,6 @@ jobs: name: coverage-report path: | coverage.json - .coverage check-coverage: runs-on: ubuntu-latest @@ -111,15 +110,14 @@ jobs: echo "Coverage decreased from $baseline_coverage% to $current_coverage%" exit 1 else - echo "$baseline_coverage% = $current_coverage%, Coverage didn't decrease. Committing new .coverage and coverage.json." + echo "$baseline_coverage% = $current_coverage%, Coverage didn't decrease. Committing new coverage.json." git config user.name github-actions git config user.email github-actions@github.com - git add .coverage git add coverage.json - git commit -m "automatically update .coverage and coverage.json" + git commit -m "automatically update coverage.json" git push -f origin HEAD:${{ github.head_ref }} fi diff --git a/.gitignore b/.gitignore index c7a2c46..5734733 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ arches_rdm_example_project/settings_local.py arches_rdm_example_project/webpack/webpack-stats.json arches_rdm_example_project/webpack/webpack-user-config.js .vscode/ +.coverage +coverage.json *.egg-info .DS_STORE CACHE \ No newline at end of file