add self.classes_ #16
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: Cron Test Dependencies | ||
on: [push] | ||
jobs: | ||
cron: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
python-version: [3.8] | ||
os: [macos-10.15, ubuntu-latest, windows-latest] | ||
pre-release-dependencies: ["--pre", ""] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies - | ||
run: | | ||
Check failure on line 20 in .github/workflows/cron.yml GitHub Actions / Cron Test DependenciesInvalid workflow file
|
||
python -m pip install --upgrade pip | ||
pip install ${{pre-release-dependencies}} human-learn | ||
pip freeze | ||
- name: Test with pytest | ||
run: | | ||
pip install -e ".[test]" | ||
pytest |