Skip to content

Commit

Permalink
Update run_tests.yaml: pip install fails now, try another pip cmd (#240)
Browse files Browse the repository at this point in the history
* Update run_tests.yaml: pip install fails now, try another pip cmd

* Update run_tests.yaml try to get gh actions running again

* Update test_explorer.py

* Update test_explorer.py

* Update test_explorer.py

* Update test_explorer.py

* Update test_explorer.py

* Update test_explorer.py

* Update test_explorer.py

* Update test_explorer.py
  • Loading branch information
roywilly authored Oct 17, 2023
1 parent a78eb95 commit 2d31637
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 2d31637

Please sign in to comment.