Private
Public Access
1
0

fixed tests

This commit is contained in:
Sander Roosendaal
2022-02-15 08:56:49 +01:00
parent 221953bfdf
commit 7c07b41707
4 changed files with 3 additions and 3 deletions

View File

@@ -84,7 +84,7 @@ from rowingdata import (
from rowers.tasks import (
handle_sendemail_unrecognized, handle_setcp,
handle_getagegrouprecords, handle_update_wps,
handle_request_post
handle_request_post, handle_calctrimp
)
from rowers.tasks import handle_zip_file

View File

@@ -39,7 +39,7 @@ from django.conf import settings
from collections import OrderedDict
from bokeh.core.properties import value
from rowers.opaque import encoder
from bokeh.models import OpenURL, TapTool
from bokeh.models import OpenURL, TapTool, CrosshairTool
from bokeh.models.glyphs import ImageURL
from bokeh.transform import cumsum
from bokeh.models import (

View File

@@ -28,6 +28,7 @@ pytestmark = pytest.mark.django_db
from bs4 import BeautifulSoup
import re
from parameterized import parameterized
from django.test import TestCase, Client,override_settings, RequestFactory, TransactionTestCase
from django.core.management import call_command

View File

@@ -1,4 +1,3 @@
import rowers.teams as teams
from rowers.serializers import RowerSerializer, WorkoutSerializer
from rq import Queue, cancel_job