Skip to content

Commit

Permalink
Update review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
goanpeca committed Nov 30, 2022
1 parent ea56516 commit 6f5ee6a
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,30 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies cli
- name: Install dependencies constructor-manager-cli
run: |
cd constructor-manager-cli
python -m pip install --upgrade pip
python -m pip install setuptools tox tox-gh-actions
cd constructor-manager-cli
pip install -e .
pip list
# this runs the platform-specific tests declared in tox.ini
- name: Test with tox
- name: Test constructor-manager-cli
run: |
cd constructor-manager-cli
python -m tox
env:
PLATFORM: ${{ matrix.platform }}

# this runs the platform-specific tests declared in tox.ini
- name: Test with tox
- name: Install dependencies constructor-manager
run: |
cd constructor-manager-cli
pip install -e .
pip list
env:
PLATFORM: ${{ matrix.platform }}

- name: Test constructor-manager
run: |
cd constructor-manager
python -m tox
Expand Down

0 comments on commit 6f5ee6a

Please sign in to comment.