Skip to content

Commit

Permalink
test(hansbug): refactor test and build for treevalue
Browse files Browse the repository at this point in the history
  • Loading branch information
HansBug committed Dec 31, 2022
1 parent 04bdfd0 commit 847f7ea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,19 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install PyPI dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install --upgrade flake8 setuptools wheel twine
pip install -r requirements.txt
pip install -r requirements-build.txt
pip install -r requirements-test.txt
pip install -r requirements-test-extra.txt | true
- name: Install extra PyPI dependencies
continue-on-error: true
shell: bash
run: |
pip install -r requirements-test-extra.txt
- name: Test the basic environment
shell: bash
run: |
Expand Down

0 comments on commit 847f7ea

Please sign in to comment.