Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:

jobs:
call-test-workflow:
#https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow
uses: ./.github/workflows/run-tests.yml
uses: GNS-Science/nshm-github-actions/.github/workflows/python-run-tests.yml@main
with:
operating-systems: "['ubuntu-latest', 'macos-latest', 'windows-latest']"
python-versions: "['3.9', '3.10', '3.11']"
fail-fast: false
secrets: inherit
70 changes: 0 additions & 70 deletions .github/workflows/run-tests.yml

This file was deleted.

20 changes: 15 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ exclude_lines =

[tox:tox]
isolated_build = true
envlist = py39, py310, py311, py312, format, lint, build
envlist = py39, py310, py311, py312, format, lint, build-linux, build-macos

[gh-actions]
python =
Expand Down Expand Up @@ -81,10 +81,20 @@ commands =
flake8 solvis_store tests
mypy solvis_store tests

[testenv:build]
[testenv:build-linux]
platform = linux
allowlist_externals =
poetry
poetry
extras =
dev
dev
commands =
poetry build
poetry build

[testenv:build-macos]
platform = darwin
allowlist_externals =
poetry
extras =
dev
commands =
poetry build