Browse Source

[worfklow] added coverage test (#2399)

* [worfklow] added coverage test

* polish code

* polish code

* polish code

* polish code

* polish code

* polish code

* polish code

* polish code
pull/2408/head
Frank Lee 2 years ago committed by GitHub
parent
commit
53bb8682a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/build.yml
  2. 3
      .gitignore
  3. 1
      requirements/requirements-test.txt

3
.github/workflows/build.yml

@ -20,6 +20,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Find the changed files
id: find-changed-files
uses: tj-actions/changed-files@v35
@ -75,7 +76,7 @@ jobs:
- name: Unit Testing
run: |
PYTHONPATH=$PWD pytest tests
PYTHONPATH=$PWD pytest --cov=. --cov-report lcov tests
env:
DATA: /data/scratch/cifar-10
NCCL_SHM_DISABLE: 1

3
.gitignore vendored

@ -151,3 +151,6 @@ colossalai/version.py
# ignore python interface defition file
.pyi
# ignore coverage test file
converage.lcov

1
requirements/requirements-test.txt

@ -1,5 +1,6 @@
fbgemm-gpu==0.2.0
pytest
pytest-cov
torchvision
transformers
timm

Loading…
Cancel
Save