update machine json file #155
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: rid python package test | |
on: | |
- pull_request | |
- push | |
jobs: | |
Unittest: | |
runs-on: ubuntu-latest | |
container: | |
image: pkufjhdocker/rid-tf-cpu:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run unittest | |
run: | | |
pip install mock coverage | |
pip install pydflow | |
cd ./tests | |
coverage run -m unittest discover op | |
DFLOW_DEBUG=1 coverage run -m unittest |