100-ing tests #91
This file contains 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: Django tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Create settings_local.py | |
run: | | |
echo "SECRET_KEY = 'SECRET_KEY'" > sara/settings_local.py | |
echo "DEBUG = True" >> sara/settings_local.py | |
echo "ALLOWED_HOSTS = ['localhost', '127.0.0.1']" >> sara/settings_local.py | |
echo "DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'db.sqlite3' } }" >> sara/settings_local.py | |
echo "POA_URL = 'https://meta.wikimedia.org/wiki/Wiki_Movement_Brazil_User_Group/Plan_of_Activities'" >> sara/settings_local.py | |
- name: Coverage report | |
run: | | |
pip install coverage | |
coverage run manage.py test | |
coverage report |