Skip to content

Have to update the unit test for status #440

Have to update the unit test for status

Have to update the unit test for status #440

Workflow file for this run

name: Unit testing of mepo
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', 'pypy-3.9']
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
timeout-minutes: 2
- name: Run unit tests
run: python3 mepo.d/utest/test_mepo_commands.py -v
timeout-minutes: 2