From 2b18cb6b84eab513aa04bbdff9ea57a2f0bd8054 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Tue, 9 Mar 2021 13:37:02 +0100 Subject: [PATCH] Rename Django's dev branch to main. More information: https://groups.google.com/g/django-developers/c/tctDuKUGosc/ Refs: https://github.com/django/django/pull/14048 --- tox.ini | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index db33619..df88555 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{36,37,38,39}-dj{22,30,31,master} + py{36,37,38,39}-dj{22,30,31,main} flake8, isort [gh-actions] @@ -17,9 +17,11 @@ deps = dj22: Django==2.2.* dj30: Django==3.0.* dj31: Django==3.1.* - djmaster: https://github.com/django/django/archive/master.tar.gz + djmain: https://github.com/django/django/archive/main.tar.gz ignore_outcome = - djmaster: True + djmain: True +ignore_errors = + djmain: True passenv = CI GITHUB_* @@ -28,9 +30,6 @@ usedevelop = True commands = pytest {posargs} -[testenv:py{36,37,38,39}-djmaster] -ignore_errors = True - [testenv:flake8] basepython = python3.8