Skip to content

Commit c272f7a

Browse files
Check just to run one test for now
1 parent afdc00b commit c272f7a

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/execute-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run-tests:
1818
name: "Run Specified Tests"
1919
runs-on: ubuntu-latest
20-
timeout-minutes: 3
20+
timeout-minutes: 10
2121
steps:
2222
- name: "Checkout code"
2323
uses: actions/checkout@v4

pytest.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ markers =
3636
compartment5: only for compartment 5
3737
compartment1_plan_creation: to run the plan creation for compartment 1
3838
vpn_required: for tests that require a VPN connection
39+
only: to run a specific test

tests/test_organisations_page.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def before_each(page: Page):
2424
BasePage(page).go_to_organisations_page()
2525

2626

27+
@pytest.mark.only
2728
@pytest.mark.smoke
2829
def test_organisations_page_navigation(page: Page) -> None:
2930
upload_nacs_data_bureau_link = page.get_by_text(

0 commit comments

Comments
 (0)