general: Fix tests.

This commit is contained in:
Dylan Araps 2018-04-29 19:46:11 +10:00
parent 6e5f82bdcf
commit 9d73a5f876
2 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,7 @@ def every(colors, output_dir=CACHE_DIR):
colors = flatten_colors(colors) colors = flatten_colors(colors)
template_dir = os.path.join(MODULE_DIR, "templates") template_dir = os.path.join(MODULE_DIR, "templates")
template_dir_user = os.path.join(CONF_DIR, "templates") template_dir_user = os.path.join(CONF_DIR, "templates")
util.create_dir(template_dir_user)
join = os.path.join # Minor optimization. join = os.path.join # Minor optimization.
for file in [*os.scandir(template_dir), for file in [*os.scandir(template_dir),

View File

@ -55,6 +55,7 @@ def file(input_file):
theme_name = ".".join((input_file, "json")) theme_name = ".".join((input_file, "json"))
user_theme_file = os.path.join(CONF_DIR, "colorschemes", theme_name) user_theme_file = os.path.join(CONF_DIR, "colorschemes", theme_name)
theme_file = os.path.join(MODULE_DIR, "colorschemes", theme_name) theme_file = os.path.join(MODULE_DIR, "colorschemes", theme_name)
util.create_dir(os.path.dirname(user_theme_file))
# Find the theme file. # Find the theme file.
if os.path.isfile(input_file): if os.path.isfile(input_file):