Skip to content

updated tests

updated tests #11

Workflow file for this run

name: Run unit tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.14]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Test with unittest
run: |
cd stepik
python -m unittest discover -s ./test -p 'test_*.py'