Skip to content

Commit

Permalink
Merge pull request #1457 from PythonCoderAS/delete-build
Browse files Browse the repository at this point in the history
Remove build directory
  • Loading branch information
bboe authored Apr 29, 2020
2 parents db45926 + 743a517 commit 2719426
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 2719426

Please sign in to comment.