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 build directory #1457

Merged
merged 1 commit into from
Apr 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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