Skip to content

Commit

Permalink
Add e2e workflow, upgrade the existing one
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed Jan 23, 2024
1 parent d06b54e commit 88488f7
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Run E2E Tests

on:
push:
branches:
master

jobs:

run_tests:

runs-on: ubuntu-latest

steps:

- name: Get sources
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Installing dependencies
run: pip install --upgrade pip pytest pytest-httpserver --quiet

- name: Install module
run: pip install -e .

- name: Running tests
run: pytest e2e
6 changes: 3 additions & 3 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
steps:

- name: Get sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: '3.10'

- name: Installing dependencies
run: pip install --upgrade pip black --quiet
Expand Down

0 comments on commit 88488f7

Please sign in to comment.