Last active
January 1, 2022 04:05
-
-
Save gamorales/31b41565764dbea4acbb888c1f3a3678 to your computer and use it in GitHub Desktop.
Continous Integration github actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continous Integration | |
on: | |
pull_request: | |
branches: | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.7] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/local.txt | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Django Testing project | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
run: | | |
python3 manage.py test # Don't forget to run tests |
Thanks, this was a very useful example. Could it be that flake8 needs to "--exclude env"?
You can add it if you need it, for example I just use a .env file and is not in the repository.
Thank you @gamorales, what if I'm storing all my tests in a structure like this:
app
app\models.py
app\views.py
app\tests
app\tests\__init__.py
app\tests\bananas.py
app\tests\apples.py
And how can I run the entire tests (I mean all tests from all apps) with one command?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, this was a very useful example. Could it be that flake8 needs to "--exclude env"?