Skip to content

README: Remove Anaconda also from updating instructions #154

README: Remove Anaconda also from updating instructions

README: Remove Anaconda also from updating instructions #154

Workflow file for this run

# SPDX-FileCopyrightText: 2021 Louisa Marie Kienesberger <e11775781@student.tuwien.ac.at>
# SPDX-FileCopyrightText: 2022 Lukas Schrangl <lukas.schrangl@tuwien.ac.at>
#
# SPDX-License-Identifier: BSD-3-Clause
name: sdt-python test suite
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macOS, windows]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Set up Python
shell: pwsh
run: uv sync
- name: Test with pytest
shell: pwsh
run: |
$os = "${{ runner.os }}"
if ( $os -eq "Linux") {
uv run pytest -v -rs --ignore=tests/test_gui/ tests
} else {
uv run pytest -v -rs tests
}