summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/toaster/tests/functional/test_functional_basic.py4
-rw-r--r--bitbake/lib/toaster/tests/toaster-tests-requirements.txt1
-rw-r--r--bitbake/lib/toaster/tests/views/test_views.py2
3 files changed, 6 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/tests/functional/test_functional_basic.py b/bitbake/lib/toaster/tests/functional/test_functional_basic.py
index 7e9be91ca1..f558cce884 100644
--- a/bitbake/lib/toaster/tests/functional/test_functional_basic.py
+++ b/bitbake/lib/toaster/tests/functional/test_functional_basic.py
@@ -8,12 +8,14 @@
8# 8#
9 9
10import re, time 10import re, time
11import pytest
12from django.urls import reverse 11from django.urls import reverse
12import pytest
13from tests.functional.functional_helpers import SeleniumFunctionalTestCase 13from tests.functional.functional_helpers import SeleniumFunctionalTestCase
14from orm.models import Project 14from orm.models import Project
15from selenium.webdriver.common.by import By 15from selenium.webdriver.common.by import By
16 16
17
18@pytest.mark.order("last")
17class FuntionalTestBasic(SeleniumFunctionalTestCase): 19class FuntionalTestBasic(SeleniumFunctionalTestCase):
18 20
19# testcase (1514) 21# testcase (1514)
diff --git a/bitbake/lib/toaster/tests/toaster-tests-requirements.txt b/bitbake/lib/toaster/tests/toaster-tests-requirements.txt
index 7109c625d2..71cc083436 100644
--- a/bitbake/lib/toaster/tests/toaster-tests-requirements.txt
+++ b/bitbake/lib/toaster/tests/toaster-tests-requirements.txt
@@ -4,3 +4,4 @@ pytest-django==4.5.2
4pytest-env==1.1.0 4pytest-env==1.1.0
5pytest-html==4.0.2 5pytest-html==4.0.2
6pytest-metadata==3.0.0 6pytest-metadata==3.0.0
7pytest-order==1.1.0
diff --git a/bitbake/lib/toaster/tests/views/test_views.py b/bitbake/lib/toaster/tests/views/test_views.py
index 06bf6c20a3..349881ebf6 100644
--- a/bitbake/lib/toaster/tests/views/test_views.py
+++ b/bitbake/lib/toaster/tests/views/test_views.py
@@ -9,6 +9,7 @@
9 9
10"""Test cases for Toaster GUI and ReST.""" 10"""Test cases for Toaster GUI and ReST."""
11 11
12import pytest
12from django.test import TestCase 13from django.test import TestCase
13from django.test.client import RequestFactory 14from django.test.client import RequestFactory
14from django.urls import reverse 15from django.urls import reverse
@@ -33,6 +34,7 @@ PROJECT_NAME2 = "test project 2"
33CLI_BUILDS_PROJECT_NAME = 'Command line builds' 34CLI_BUILDS_PROJECT_NAME = 'Command line builds'
34 35
35 36
37@pytest.mark.order(1)
36class ViewTests(TestCase): 38class ViewTests(TestCase):
37 """Tests to verify view APIs.""" 39 """Tests to verify view APIs."""
38 40