Skip to content

Merge pull request #43 from Qumulo/update_utils #190

Merge pull request #43 from Qumulo/update_utils

Merge pull request #43 from Qumulo/update_utils #190

Workflow file for this run

name: Test Suite
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Test with pytest
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
black --check -t py39 .
python -m pytest tests/ -s