This PR aims to address the failing test test_read_holmgard_gym.py. The _tests/envs/test_read_holmgardgym.py test fails
on linux based filesystems. This is because linux based filesystems are "file-name case-sensitive". Please see Issue https://github.com/ganyariya/gym-md/issues/18 for detail.
Changes Made
Modify the def read_settings(stage_name: str) -> PropsConfig static method within the gym_md/envs/setting.py file to cater for the case-sensitive file names.
Overview
This PR aims to address the failing test
test_read_holmgard_gym.py
. The _tests/envs/test_read_holmgardgym.py test fails on linux based filesystems. This is because linux based filesystems are "file-name case-sensitive". Please see Issue https://github.com/ganyariya/gym-md/issues/18 for detail.Changes Made
Modify the
def read_settings(stage_name: str) -> PropsConfig
static method within thegym_md/envs/setting.py
file to cater for the case-sensitive file names.Testing output after changes