Skip to content

Commit

Permalink
[WIP] test actions env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Japhiolite committed May 22, 2023
1 parent 93e481b commit 2f28068
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
import matplotlib.pyplot as plt
import pytest

IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"
# IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"
IN_GITHUB_ACTIONS = True

if not IN_GITHUB_ACTIONS:
import gempy_engine
Expand Down
4 changes: 2 additions & 2 deletions gempy_3/api/test_api/test_model_gempy2_to_gempy3_basic.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import os
import pytest

IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"

#IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"
IN_GITHUB_ACTIONS = True

import gempy as gp
from gempy import Project
Expand Down

0 comments on commit 2f28068

Please sign in to comment.