ENH: Implement size_per_learner
in SlurmExecutor
#970
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: pytest | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Update Python version in environment.yml | |
run: | | |
sed -i 's/- python/- python=${{ matrix.python-version }}/g' environment.yml | |
echo "Updated environment.yml content:" | |
cat environment.yml | |
- name: Install Conda environment with micromamba | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-file: environment.yml | |
cache-environment: true | |
- name: Install adaptive-scheduler | |
shell: bash -l {0} | |
run: | | |
pip install -e ".[test,all]" | |
# Linux and macOS | |
- name: Run Python | |
shell: bash -l {0} | |
run: | | |
python -c "import adaptive_scheduler; print(adaptive_scheduler.__version__)" | |
pytest | |
- name: Upload coverage to Codecov | |
if: matrix.python-version == '3.11' | |
uses: codecov/codecov-action@v3 |