Skip to content

Commit

Permalink
CI cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
glguy committed Aug 24, 2023
1 parent 35fb0f0 commit 8145ffe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ jobs:
- name: Install RACK CLI development dependencies
run: |
cd cli
pip3 install ".[dev]"
pip3 install "cli/[dev]"
- name: Lint RACK CLI
run: |
Expand Down Expand Up @@ -110,9 +109,8 @@ jobs:
- name: Run rack-box tests
run: |
cd RACK/cli
pip3 install .
cd ..
cd RACK
pip3 install cli/
pip3 install -r tests/requirements.txt
python3 -m pytest tests
Expand Down
4 changes: 2 additions & 2 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ the RACK-Box README.
```shell
python3 -m venv venv
source venv/bin/activate
pip install --force-reinstall .
pip3 install --force-reinstall .
```

If running on Windows, [GitBash](https://gitforwindows.org/) can be used with the following commands.

```shell
python -m venv venv
source venv/Scripts/activate
pip install --force-reinstall .
pip3 install --force-reinstall .
```

## Initialize RACK-in-a-Box
Expand Down

0 comments on commit 8145ffe

Please sign in to comment.