Skip to content

Commit

Permalink
work on self-test
Browse files Browse the repository at this point in the history
  • Loading branch information
briantoby committed Feb 10, 2025
1 parent 3d6cef3 commit f71135a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/reftest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: why does self-test fail?
name: explore self-test fail

on:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
# Runs on pushes targeting the default branch
#push:
# branches-ignore:
Expand All @@ -9,8 +10,7 @@ on:
#pull_request:
# branches: ['develop']

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:



# Default to bash
Expand Down
6 changes: 5 additions & 1 deletion GSASII/GSASIIpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,11 @@ def XferConfigIni():
return

# Access values from the configuration file
cfgG = cfg['GUI settings']
try:
cfgG = cfg['GUI settings']
except KeyError:
cfgG = {}

for key in cfgG:
key = key.lower() # not needed... but in case configparser ever changes
capKey = capsDict.get(key)
Expand Down

0 comments on commit f71135a

Please sign in to comment.