Fix broken "Tests" workflow

This commit is contained in:
blackfly 2020-04-06 17:45:15 +02:00
parent 624de3b471
commit a287953c48
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt pip install .
- name: Lint with flake8 - name: Lint with flake8
run: | run: |
pip install flake8 pip install flake8

View File

@ -31,7 +31,7 @@ setup(name='prototorch',
'sklearn', 'sklearn',
'matplotlib', 'matplotlib',
], ],
'tests': ['unittest'], 'tests': ['pytest'],
}, },
classifiers=[ classifiers=[
'Development Status :: 2 - Pre-Alpha', 'Environment :: Console', 'Development Status :: 2 - Pre-Alpha', 'Environment :: Console',