NF: Visualize the latent space and pack data_per_streamline in the batch loader. #811
Workflow file for this run
This file contains 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: test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
# max-parallel: 6 | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.10.*] | |
requires: ['latest'] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
export SETUPTOOLS_USE_DISTUTILS=stdlib | |
pip install --upgrade pip | |
pip install pytest | |
pip install -e . | |
- name: Tests | |
run: | | |
pytest -v |