diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml index 21da4b62..d3bc2d13 100644 --- a/.github/workflows/continuous.yml +++ b/.github/workflows/continuous.yml @@ -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: | @@ -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 diff --git a/cli/README.md b/cli/README.md index 91244885..69547e4a 100644 --- a/cli/README.md +++ b/cli/README.md @@ -46,7 +46,7 @@ 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. @@ -54,7 +54,7 @@ If running on Windows, [GitBash](https://gitforwindows.org/) can be used with th ```shell python -m venv venv source venv/Scripts/activate -pip install --force-reinstall . +pip3 install --force-reinstall . ``` ## Initialize RACK-in-a-Box