Test rdkit-pypi from PyPi #5
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 rdkit-pypi from PyPi | |
on: | |
workflow_dispatch: | |
jobs: | |
build_wheels: | |
name: Test rdkit-pypi from pypi | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2019, ubuntu-20.04, macos-10.15] | |
python: ['3.7', '3.8', '3.9'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
name: Install Python | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install from PyPi | |
run: | | |
python --version | |
python -m ensurepip --upgrade | |
python -m pip install rdkit-pypi | |
- name: Run tests | |
run: | | |
python -m pip install pytest | |
pytest --exitfirst --verbose --failed-first |