Spaces:
Running
Running
e2e
Browse files- .github/workflows/e2e.yml +1 -1
- e2e/pages/__init__.py +1 -0
- e2e/pytest.ini +1 -0
- e2e/specs/__init__.py +1 -0
.github/workflows/e2e.yml
CHANGED
@@ -62,7 +62,7 @@ jobs:
|
|
62 |
- name: Run E2E tests
|
63 |
run: |
|
64 |
cd e2e
|
65 |
-
pytest
|
66 |
|
67 |
- name: Upload E2E test results
|
68 |
uses: actions/upload-artifact@v4
|
|
|
62 |
- name: Run E2E tests
|
63 |
run: |
|
64 |
cd e2e
|
65 |
+
pytest specs/ -v --tb=short -s
|
66 |
|
67 |
- name: Upload E2E test results
|
68 |
uses: actions/upload-artifact@v4
|
e2e/pages/__init__.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Pages package for E2E tests
|
e2e/pytest.ini
CHANGED
@@ -3,6 +3,7 @@ testpaths = specs
|
|
3 |
python_files = *_spec.py
|
4 |
python_classes = Test*
|
5 |
python_functions = test_*
|
|
|
6 |
addopts =
|
7 |
--strict-markers
|
8 |
--strict-config
|
|
|
3 |
python_files = *_spec.py
|
4 |
python_classes = Test*
|
5 |
python_functions = test_*
|
6 |
+
pythonpath = .
|
7 |
addopts =
|
8 |
--strict-markers
|
9 |
--strict-config
|
e2e/specs/__init__.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Specs package for E2E tests
|