Commit 5b48aa69 authored by Adrian Pino's avatar Adrian Pino
Browse files

Add pip install -e in the CI

parent ca07234d
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -18,17 +18,15 @@ jobs:
      uses: actions/checkout@v4

    - name: Install dependencies
      run: pip install -r requirements.txt
      run: |
        pip install -r requirements.txt
        pip install -e .

    - name: "Run test: validate edge cloud clients instantiation"
      run: |
        export PYTHONPATH=$PYTHONPATH:$(pwd)/src
        pytest -v tests/common/test_invoke_edgecloud_clients.py
      run: pytest -v tests/common/test_invoke_edgecloud_clients.py

    - name: "Run test: validate network clients instantiation"
      run: |
        export PYTHONPATH=$PYTHONPATH:$(pwd)/src
        pytest -v tests/common/test_invoke_network_clients.py
      run: pytest -v tests/common/test_invoke_network_clients.py

  lint:
    name: Run linters