Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions plugin-template
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ def write_template_section(config, name, plugin_root_dir, verbose=False):
files_copied = 0
gitref = subprocess.check_output(["git", "describe", "--dirty"]).decode().strip()
for relative_path in generate_relative_path_set(section_template_dir):
if config["issue_tracker"] != "redmine" and "redmine" in relative_path:
continue
destination_relative_path = relative_path.replace("plugin_name", config["plugin_snake"])
necessary_dir_structure = os.path.dirname(
os.path.join(plugin_root_dir, destination_relative_path)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ COMMIT_MSG=$(git log --format=%B --no-merges -1)
export COMMIT_MSG

if [[ "$TEST" == "upgrade" ]]; then
pip install -r functest_requirements.txt
git checkout -b ci_upgrade_test
cp -R .github /tmp/.github
cp -R .ci /tmp/.ci
Expand Down