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 explicit definiton of django_admin_smoke_tests fixture, update README #21

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
116 changes: 116 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
tests:
# The type of runner that the job will run on
runs-on: ubuntu-latest

strategy:
matrix:
DJANGO_VERSION: [ '22', '30', '31', '32', '40', '41']
PYTHON_VERSION: ['3.7', '3.8', '3.9', '3.10']
exclude:
- DJANGO_VERSION: '41'
PYTHON_VERSION: '3.7'
- DJANGO_VERSION: '40'
PYTHON_VERSION: '3.7'
- DJANGO_VERSION: '31'
PYTHON_VERSION: '3.10'
- DJANGO_VERSION: '30'
PYTHON_VERSION: '3.10'
- DJANGO_VERSION: '22'
PYTHON_VERSION: '3.10'
fail-fast: false

services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.PYTHON_VERSION }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: smoke-tests-${{ hashFiles('setup.py') }}-${{ matrix.DJANGO_VERSION }}

- name: Install
run: |
pip install -U pip
pip install -U wheel virtualenv
pip install tox coveralls
python setup.py install

- name: Testing
run: |
coverage erase
export PYTHON_VER= && tox -e py`echo ${{matrix.PYTHON_VERSION}} | sed s/\\\.//g`-dj${{matrix.DJANGO_VERSION}}
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432

- name: Upload coverage
run: |
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
flake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Running Flake8
run: |
pip install flake8
flake8
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Running isort
run: |
pip install isort
python -m isort . --check-only --diff
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Running black
run: |
pip install black
black --check .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Running mypy
run: |
pip install mypy django-stubs types-six
mypy django_admin_smoke_tests
46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Changelog
=========

0.0.4 (2022-xx-xx)
------------------
* explicit definiton of ``django_admin_smoke_test`` fixture was removed
15 changes: 10 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ django-admin-smoke-tests
.. image:: https://coveralls.io/repos/greyside/django-admin-smoke-tests/badge.png?branch=master
:target: https://coveralls.io/r/greyside/django-admin-smoke-tests?branch=master

Running smoke tests
-------------------

Run with ``./manage.py test django_admin_smoke_tests.tests``.

You don't have to add anything ``INSTALLED_APPS``

Usage in your tests
-------------------

Import into your own code:
If you want to customize smoke testing, create testing file (e.g. ``tests/test_admin_smoke.py``) and add following starting code:

.. code:: python

Expand All @@ -23,21 +26,23 @@ Import into your own code:

class AdminSiteSmokeTest(AdminSiteSmokeTestMixin, TestCase):
def setUp(self):
super(AdminSiteSmokeTest, self).setUp()
super().setUp()
# custom setup goes here

If you want to use admin smoke tests as part of your tests with data from fixtures,
you can do following:
you can override the ``fixtures`` attribute:

.. code:: python

from django.test import TestCase
from django_admin_smoke_tests.tests import AdminSiteSmokeTestMixin

class AdminSiteSmokeTest(AdminSiteSmokeTestMixin, TestCase):
fixtures = ['data']
fixtures = ['testing_data']

And you can exclude certain (external) apps or model admins with::
And you can also exclude certain (e.g. external) apps or model admins with class attributes:

.. code:: python

exclude_apps = ['constance',]
exclude_modeladmins = [apps.admin.ModelAdmin]
Loading