We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c796a8e commit c4d0dddCopy full SHA for c4d0ddd
.github/workflows/ci_action.yml
@@ -77,7 +77,6 @@ jobs:
77
strategy:
78
matrix:
79
python-version:
80
- - "3.7"
81
- "3.9"
82
- "3.10"
83
include:
io/eolearn/tests/conftest.py
@@ -33,10 +33,10 @@ def example_data_path_fixture():
33
@pytest.fixture(name="config")
34
def config_fixture():
35
config = SHConfig()
36
- for param in config.get_params():
37
- env_variable = param.upper()
38
- if os.environ.get(env_variable):
39
- setattr(config, param, os.environ.get(env_variable))
+ # for param in config.get_params():
+ # env_variable = param.upper()
+ # if os.environ.get(env_variable):
+ # setattr(config, param, os.environ.get(env_variable))
40
return config
41
42
0 commit comments