Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update run_tests.yaml: pip install fails now, try another pip cmd #240

Merged
merged 10 commits into from
Oct 17, 2023
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:

- name: Install fmu-sumo
run: >
pip install pip -U &&
pip install .
python -m pip install --upgrade pip &&
python -m pip install .
- name: Run tests
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions tests/test_explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def fixture_test_case(explorer: Explorer, case_name: str) -> Case:


@pytest.fixture(name="sumo_client")
def fixture_sumo_client():
def fixture_sumo_client(token: str):
"""Returns SumoClient for dev env"""
return SumoClient("dev")
return SumoClient("dev", token=token)


@pytest.fixture(name="utils")
Expand Down
Loading