Skip to content

Commit

Permalink
TMP
Browse files Browse the repository at this point in the history
  • Loading branch information
mih committed Sep 24, 2024
1 parent f2a7bb0 commit 16180a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ for:
export TMPDIR=/crippledfs
fi
- echo TMPDIR=$TMPDIR
- 'hatch run tests.py${PY}:run-cov --doctest-modules --durations 10'
- 'hatch run tests.py${PY}:run-cov -s --doctest-modules --durations 10'

after_test:
- 'hatch run tests.py${PY}:cov-combine'
Expand Down Expand Up @@ -249,7 +249,7 @@ for:
#- tools\appveyor\verify-ssh-access

test_script:
- cmd: 'hatch run tests.py%PY%:run-cov --doctest-modules --durations 10'
- cmd: 'hatch run tests.py%PY%:run-cov -s --doctest-modules --durations 10'

after_test:
- cmd: 'hatch run tests.py%PY%:cov-combine'
Expand Down
3 changes: 3 additions & 0 deletions datasalad/settings/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ def __getitem__(self, key: str) -> Setting:

def __setitem__(self, key: str, value: Setting) -> None:
name = self.get_varname_from_key(key)
print(f'NAME {name}')
print(f'ENV {environ.keys()}')
environ[name] = str(value.value)
print(f'AFTERENV {environ.keys()}')

def get(self, key, default: Any = None) -> Setting:
try:
Expand Down

0 comments on commit 16180a1

Please sign in to comment.