Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

test: fix test, drop objgraph memory test #6

test: fix test, drop objgraph memory test

test: fix test, drop objgraph memory test #6

Workflow file for this run

on:
workflow_dispatch:
push:
jobs:
run-test:
name: "run tests"
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup python3
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: install dependencies
run: |
python3 -m pip install -e .
- name: run tests
id: tests
# skip benchmark_test.py
run: for file in ./test/*; do if [ $file != "./test/benchmark_test.py" ]; then python3 $file; fi; done