Spaces:
Build error
Build error
rmm commited on
Commit ·
63eba58
1
Parent(s): 5eadf93
CI: removed this branch from triggers, testing / fixes done
Browse files
.github/workflows/python-pytest.yml
CHANGED
|
@@ -5,7 +5,7 @@ name: Execute tests with pytest
|
|
| 5 |
|
| 6 |
on:
|
| 7 |
push:
|
| 8 |
-
branches: [ "dev"
|
| 9 |
pull_request:
|
| 10 |
branches: [ "dev", "main" ]
|
| 11 |
permissions:
|
|
|
|
| 5 |
|
| 6 |
on:
|
| 7 |
push:
|
| 8 |
+
branches: [ "dev" ]
|
| 9 |
pull_request:
|
| 10 |
branches: [ "dev", "main" ]
|
| 11 |
permissions:
|
tests/visual_selenium/test_visual_main.py
CHANGED
|
@@ -9,7 +9,7 @@ from selenium.webdriver.support import expected_conditions as EC
|
|
| 9 |
BaseCase.main(__name__, __file__)
|
| 10 |
|
| 11 |
# Set the paths to the images and csv file
|
| 12 |
-
repo_path = Path(__file__).resolve().parents[
|
| 13 |
imgpath = repo_path / "tests/data/rand_images"
|
| 14 |
img_f1 = imgpath / "img_001.jpg"
|
| 15 |
img_f2 = imgpath / "img_002.jpg"
|
|
|
|
| 9 |
BaseCase.main(__name__, __file__)
|
| 10 |
|
| 11 |
# Set the paths to the images and csv file
|
| 12 |
+
repo_path = Path(__file__).resolve().parents[2]
|
| 13 |
imgpath = repo_path / "tests/data/rand_images"
|
| 14 |
img_f1 = imgpath / "img_001.jpg"
|
| 15 |
img_f2 = imgpath / "img_002.jpg"
|