Fix issue #497 by removing assertion from split_disjoint_nodes; and s… #86
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, test] | |
| merge_group: | |
| jobs: | |
| packaging: | |
| name: Python packaging | |
| uses: tskit-dev/.github/.github/workflows/python-packaging.yml@v14 | |
| with: | |
| cli-test-cmd: tsdate --help | |
| test: | |
| name: Python | |
| uses: tskit-dev/.github/.github/workflows/python-tests.yml@v14 | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python }} | |
| coverage-directory: tsdate | |
| secrets: inherit | |
| strategy: | |
| matrix: | |
| python: ["3.11", "3.13"] | |
| os: [macos-latest, ubuntu-24.04, windows-latest] |