Skip to content

Commit e2b230e

Browse files
authored
Merge pull request #109 from ticosax/fix-ci
Fix ci
2 parents dbf013d + cbf402b commit e2b230e

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/test_suite.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- master
6-
pull_request:
6+
pull_request:
77
jobs:
88
tox:
99
runs-on: ubuntu-latest
@@ -21,7 +21,9 @@ jobs:
2121
uses: actions/[email protected]
2222
with:
2323
python-version: ${{ matrix.python-version }}
24-
cache: 'pip'
24+
2525
- run: pip install tox tox-gh-actions codecov
26+
2627
- run: tox
28+
2729
- run: codecov

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Django Finite State Machine Log
22

3-
[![Build Status](https://travis-ci.org/gizmag/django-fsm-log.png?branch=master)](https://travis-ci.org/gizmag/django-fsm-log)
3+
[![test suite](https://github.com/gizmag/django-fsm-log/actions/workflows/test_suite.yml/badge.svg)](https://github.com/gizmag/django-fsm-log/actions/workflows/test_suite.yml)
44
[![Code Health](https://landscape.io/github/gizmag/django-fsm-log/master/landscape.png)](https://landscape.io/github/gizmag/django-fsm-log/master)
55
[![codecov](https://codecov.io/gh/gizmag/django-fsm-log/branch/master/graph/badge.svg)](https://codecov.io/gh/gizmag/django-fsm-log)
6-
76
Automatic logging for the excellent [Django FSM](https://github.com/kmmbvnr/django-fsm)
87
package.
98

tox.ini

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ envlist =
33
py{37,38}-dj-2.2
44
py{38,39,310}-dj-3.2
55
py{38,39,310}-dj-4.0
6-
py{37,38,39,310}-dj-master
6+
py{38,39,310}-dj-master
77
flake8
88

99
[gh-actions]
@@ -18,11 +18,9 @@ usedevelop = true
1818
commands = pytest --cov=django_fsm_log --cov=tests {posargs}
1919
extras = testing
2020
deps =
21-
dj-1.11: Django>=1.11,<2.0
22-
dj-2.0: Django>=2.0,<2.1
23-
dj-2.1: Django>=2.1,<2.2
2421
dj-2.2: Django>=2.2,<3.0
25-
dj-3.0: Django>=3.0,<3.1
22+
dj-3.2: Django>=3.2,<3.3
23+
dj-4.0: Django>=4.0,<4.1
2624
dj-master: https://github.com/django/django/archive/master.tar.gz
2725

2826
[testenv:flake8]

0 commit comments

Comments
 (0)