Skip to content

Commit

Permalink
ci: Stabilize nightly job. (#2119)
Browse files Browse the repository at this point in the history
  • Loading branch information
mturoci authored and marek-mihok committed Jan 15, 2024
1 parent 3a252a0 commit 4a3cbec
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release-wave-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
py: ["3.8", "3.9", "3.10"]
py: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
if: needs.check-last-commit.outputs.yesterday-commit-count > 0
strategy:
matrix:
py: ["3.8", "3.9", "3.10"]
py: ["3.8", "3.9", "3.10", "3.11"]
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
if: needs.check-last-commit.outputs.yesterday-commit-count > 0
strategy:
matrix:
py: ["3.8", "3.9", "3.10"]
py: ["3.8", "3.9", "3.10", "3.11"]
runs-on: macos-12
steps:
- uses: actions/checkout@v2
Expand All @@ -122,6 +122,9 @@ jobs:

- name: Install docker
run: |
curl -OSL https://raw.githubusercontent.com/Homebrew/homebrew-core/dc0669eca9479e9eeb495397ba3a7480aaa45c2e/Formula/qemu.rb
brew unlink qemu
brew install ./qemu.rb
brew install docker
colima start
Expand Down
4 changes: 2 additions & 2 deletions e2e/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ attrs==22.2.0
certifi==2022.12.7
charset-normalizer==3.1.0
exceptiongroup==1.1.1
greenlet==2.0.1
greenlet==2.0.2
idna==3.4
iniconfig==2.0.0
packaging==23.0
playwright==1.31.1
playwright==1.37.0
pluggy==1.0.0
pyee==9.0.4
pytest==7.2.2
Expand Down
1 change: 1 addition & 0 deletions e2e/test_by_name_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
@pytest.fixture(scope='module', autouse=True)
def setup_teardown():
waved_p = None
expect.set_options(timeout=10_000)
try:
waved_p = start_waved()
yield
Expand Down
1 change: 1 addition & 0 deletions e2e/test_card_interaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@pytest.fixture(scope='session', autouse=True)
def global_setup_teardown(playwright):
playwright.selectors.set_test_id_attribute('data-test')
expect.set_options(timeout=10_000)


@pytest.fixture(scope='module', autouse=True)
Expand Down
1 change: 1 addition & 0 deletions e2e/test_oidc.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
@pytest.fixture(scope='session', autouse=True)
def global_setup_teardown(playwright):
playwright.selectors.set_test_id_attribute('data-test')
expect.set_options(timeout=10_000)


@pytest.fixture(scope='module', autouse=True)
Expand Down

0 comments on commit 4a3cbec

Please sign in to comment.