fix: some minor fixes
Signed-off-by: Rafal Zielinski <sq4ind@gmail.com>
This commit is contained in:
@@ -15,6 +15,17 @@ jobs:
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: 'pip'
|
||||
cache-dependency-path: 'requirements_test.txt'
|
||||
|
||||
- name: Cache pip dependencies
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: ${{ runner.os }}-pip-release-${{ hashFiles('requirements_test.txt') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pip-release-
|
||||
${{ runner.os }}-pip-
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
@@ -23,7 +34,7 @@ jobs:
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
python -m pytest tests/ -v
|
||||
python -m pytest tests/ -v --asyncio-mode=auto
|
||||
|
||||
- name: Update version in manifest
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user