Remove try except #307
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Web App Tests | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22.x" | |
| cache: 'yarn' | |
| - name: Install Python dependencies | |
| run: pip install .[dev] | |
| - name: Install Node.js dependencies | |
| run: yarn install | |
| - name: Build application | |
| run: yarn dev | |
| - name: Run web server | |
| run: PYTHONPATH=server python server/server.py & | |
| - name: Install Playwright Browsers and Run Tests | |
| run: | | |
| python -m playwright install --with-deps | |
| PYTHONPATH=server python -m pytest tests/test_e2e.py | |
| PYTHONPATH=server python -m pytest tests/test_gui.py |