| | name: Test Textual module |
| |
|
| | on: [pull_request] |
| |
|
| | jobs: |
| | build: |
| | runs-on: ${{ matrix.os }} |
| | strategy: |
| | matrix: |
| | os: [ubuntu-latest, macos-latest, windows-latest] |
| | python-version: ["3.7", "3.8", "3.9", "3.10"] |
| | defaults: |
| | run: |
| | shell: bash |
| | steps: |
| | - uses: actions/checkout@v1 |
| | - name: Set up Python ${{ matrix.python-version }} |
| | uses: actions/setup-python@v2 |
| | with: |
| | python-version: ${{ matrix.python-version }} |
| | architecture: x64 |
| | - name: Install and configure Poetry |
| | uses: snok/install-poetry@v1.1.6 |
| | with: |
| | version: 1.1.6 |
| | virtualenvs-in-project: true |
| | - name: Install dependencies |
| | run: poetry install --extras "dev" |
| | if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' |
| | - name: Format check with black |
| | run: | |
| | source $VENV |
| | make format-check |
| | |
| | |
| | |
| | |
| | - name: Test with pytest |
| | run: | |
| | source $VENV |
| | pytest tests -v --cov=./src/textual --cov-report=xml:./coverage.xml --cov-report term-missing |
| | - name: Quick e2e smoke test |
| | run: | |
| | source $VENV |
| | python e2e_tests/sandbox_basic_test.py basic 2.0 |
| | - name: Upload snapshot report |
| | if: always() |
| | uses: actions/upload-artifact@v3 |
| | with: |
| | name: snapshot-report-textual |
| | path: tests/snapshot_tests/output/snapshot_report.html |
| |
|