Skip to content

Commit c4d0ddd

Browse files
authored
Remove 3.7 from ci (#627)
* remove 3.7 from tests * disable config setup through environment
1 parent c796a8e commit c4d0ddd

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci_action.yml

-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ jobs:
7777
strategy:
7878
matrix:
7979
python-version:
80-
- "3.7"
8180
- "3.9"
8281
- "3.10"
8382
include:

io/eolearn/tests/conftest.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ def example_data_path_fixture():
3333
@pytest.fixture(name="config")
3434
def config_fixture():
3535
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))
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))
4040
return config
4141

4242

0 commit comments

Comments
 (0)