Skip to content

Commit 09c56de

Browse files
authored
Merge branch 'master' into 456_batch_run_package_fix
2 parents 099fbd1 + cf69d2a commit 09c56de

22 files changed

Lines changed: 10 additions & 2 deletions

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
else
6666
python tests/integration_testing/run_workflow.py --yaml tests/integration_testing/integration_test.yml
6767
fi
68-
mv ./results/*.json ./tests/integration_testing/results/
68+
rm -rf ./tests/integration_testing/results/*
69+
mv ./results/* ./tests/integration_testing/results/
6970
- name: Upload artifacts
7071
uses: actions/upload-artifact@v4
7172
with:
@@ -77,6 +78,7 @@ jobs:
7778
git pull origin $branch_ref
7879
git add ./tests/integration_testing/results/*.json
7980
if [[ $(git diff --cached --exit-code) ]]; then
81+
git add ./tests/integration_testing/results
8082
git config --system user.email "github-action@users.noreply.github.com"
8183
git config --system user.name "GitHub Action"
8284
git commit -m "Upload results files from CI build"

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,10 @@ _build
108108
###################
109109

110110
build/
111-
scout.egg-info/
111+
scout.egg-info/
112+
113+
# Exclude #
114+
###########
115+
116+
!tests/integration_testing/results/plots/tech_potential/*.xlsx
117+
!tests/integration_testing/results/plots/max_adopt_potential/*.xlsx
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)