Skip to content

Instantly share code, notes, and snippets.

@gamorales
Last active January 1, 2022 04:05
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gamorales/31b41565764dbea4acbb888c1f3a3678 to your computer and use it in GitHub Desktop.
Save gamorales/31b41565764dbea4acbb888c1f3a3678 to your computer and use it in GitHub Desktop.
Continous Integration github actions
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
@toresbe
Copy link

toresbe commented Jul 28, 2020

Thanks, this was a very useful example. Could it be that flake8 needs to "--exclude env"?

@gamorales
Copy link
Author

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.

@lnxpy
Copy link

lnxpy commented Jan 1, 2022

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