Skip to content

fix: fix issue where if last_chunk contain a single thread, only samp… #20

fix: fix issue where if last_chunk contain a single thread, only samp…

fix: fix issue where if last_chunk contain a single thread, only samp… #20

name: Unit Tests
on:
push:
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8 # Specify your desired Python version
- name: Install Dependencies
run: |
pip install -r requirements.txt
working-directory: ./
- name: Run Unit Tests
run: |
python -m unittest discover -s tests -p "*_test.py"
working-directory: ./