From 743a517e75e91c55301ac509d244445913dbf6de Mon Sep 17 00:00:00 2001 From: PythonCoderAS <13932583+PythonCoderAS@users.noreply.github.com> Date: Tue, 28 Apr 2020 22:43:16 -0400 Subject: [PATCH] Remove build directory --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 080395625..838788ef6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,7 @@ jobs: run: | python -m pip install --upgrade pip pip install .[lint] + python -c "import shutil;shutil.rmtree('build')" - name: Run black run: black --check --verbose . - name: Run flake8 @@ -62,6 +63,7 @@ jobs: run: | python -m pip install --upgrade pip pip install .[lint] + python -c "import shutil;shutil.rmtree('build')" - name: Check other phrase usages run: python ./tools/static_word_checks.py - name: Run black @@ -97,6 +99,7 @@ jobs: run: | python -m pip install --upgrade pip pip install .[test] + python -c "import shutil;shutil.rmtree('build')" - name: Test with pytest run: pytest strategy: @@ -123,6 +126,7 @@ jobs: python -m pip install --upgrade pip pip install .[test] pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip + python -c "import shutil;shutil.rmtree('build')" - name: Test with pytest run: coverage run --source praw --module pytest - env: