Skip to content

Commit

Permalink
Add aws cli (#69)
Browse files Browse the repository at this point in the history
* Add aws cli 

Add pip install awscli  to the Dockerfile
This will hopefully allow our Argo pipelines to sync to s3

* Automatically update integration test validation results
  • Loading branch information
vnewey authored Mar 5, 2024
1 parent 97d879a commit 76bbdd6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ RUN pip install pip-tools
RUN mkdir -p /conf
COPY requirements.in /conf/
RUN pip-compile --extra-index-url=https://packages.dea.ga.gov.au/ --output-file=/conf/requirements.txt /conf/requirements.in
RUN pip install -r /conf/requirements.txt
RUN pip install -r /conf/requirements.txt \
&& pip install --no-cache-dir awscli

# Copy source code and install it
RUN mkdir -p /code
Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Integration tests
This directory contains tests that are run to verify that DEA Intertidal code runs correctly. The ``test_intertidal.py`` file runs a small-scale full workflow analysis over an intertidal flat in the Gulf of Carpentaria using the DEA Intertidal [Command Line Interface (CLI) tools](../notebooks/Intertidal_CLI.ipynb), and compares these results against a LiDAR validation DEM to produce some simple accuracy metrics.

The latest integration test completed at **2024-03-05 14:05**. Compared to the previous run, it had an:
The latest integration test completed at **2024-03-05 16:33**. Compared to the previous run, it had an:
- RMSE accuracy of **0.14 m ( :heavy_minus_sign: no change)**
- MAE accuracy of **0.12 m ( :heavy_minus_sign: no change)**
- Bias of **0.12 m ( :heavy_minus_sign: no change)**
Expand Down
1 change: 1 addition & 0 deletions tests/validation.csv
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ time,Correlation,RMSE,MAE,R-squared,Bias,Regression slope
2024-03-04 04:35:38.183061+00:00,0.976,0.141,0.121,0.952,0.117,1.109
2024-03-05 02:40:05.059383+00:00,0.976,0.141,0.121,0.952,0.117,1.109
2024-03-05 03:05:39.133155+00:00,0.976,0.141,0.121,0.952,0.117,1.109
2024-03-05 05:33:39.493036+00:00,0.976,0.141,0.121,0.952,0.117,1.109
Binary file modified tests/validation.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 76bbdd6

Please sign in to comment.