Skip to content

Commit

Permalink
Include CSV in commit
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt authored Dec 21, 2023
1 parent efdf860 commit 3df42e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/dea-intertidal-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
# Copy out validation outputs produced by the integration tests and place them
# in correct output locations so they can be committed back into the repository
cp ./artifacts/validation.jpg ./tests/validation.jpg
cp ./artifacts/validation.csv ./tests/validation.csv
# - name: Setup upterm session
# uses: lhotari/action-upterm@v1
Expand All @@ -63,9 +64,9 @@ jobs:
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automatically update integration test validation results
file_pattern: 'tests/validation.jpg'
file_pattern: 'tests/validation.jpg tests/validation.csv'

# Add output GeoPackage data to Actions artifact so it can be downloaded
# Add output data to Actions artifact so it can be downloaded
- uses: actions/upload-artifact@v3
with:
name: validation_plot
Expand Down
2 changes: 2 additions & 0 deletions tests/test_intertidal.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import os
import pytz
import pytest
import pickle
import datetime
import rioxarray
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
from click.testing import CliRunner
Expand Down

0 comments on commit 3df42e7

Please sign in to comment.