From 391bbc59d5e8acc83f5dbf0b3c918c2e39788fa5 Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 11 Jun 2020 22:05:59 +0200 Subject: [PATCH] WIP Fix ci/cd (#396) * pytest-mypy-plugins package newer version * Revert "pytest-mypy-plugins package newer version" This reverts commit 871347a86577a5dad867bc751689bbc06d2bcae0. * update tests ignores for django * Revert "update tests ignores for django" This reverts commit 93fc66e311af62cf8cf5b79a72ab723bf3cf060a. * lets see what happen :) Co-authored-by: Kacper Szmigiel --- scripts/typecheck_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/typecheck_tests.py b/scripts/typecheck_tests.py index bdc58a2..33fade3 100644 --- a/scripts/typecheck_tests.py +++ b/scripts/typecheck_tests.py @@ -14,8 +14,8 @@ from scripts.enabled_test_modules import ( ) DJANGO_COMMIT_REFS: Dict[str, Tuple[str, str]] = { - '2.2': ('stable/2.2.x', '996be04c3ceb456754d9d527d4d708f30727f07e'), - '3.0': ('stable/3.0.x', 'd9f1792c7649e9f946f4a3a35a76bddf5a412b8b') + '2.2': ('stable/2.2.x', '8093aaa8ff9dd7386a069c6eb49fcc1c5980c033'), + '3.0': ('stable/3.0.x', '44da7abda848f05caaed74f6a749038c87dedfda') } PROJECT_DIRECTORY = Path(__file__).parent.parent DJANGO_SOURCE_DIRECTORY = PROJECT_DIRECTORY / 'django-sources' # type: Path