File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 39
39
# Runs a single command using the runners shell
40
40
- name : Run EODMS-CLI
41
41
env :
42
- USERNAME : ${{ secrets.USERNAME }}
43
- PASSWORD : ${{ secrets.PASSWORD }}
44
- run : python eodms_cli.py -u $USERNAME -p $PASSWORD -i tests\files\RCMImageProducts_Results.csv -max 4 -prc order_csv -cf "sequence id" -o tests\files\test2_auto.geojson -pri low -s
42
+ EODMS_USER : ${{ secrets.EODMS_USER }}
43
+ EODMS_PASSWORD : ${{ secrets.EODMS_PWD }}
44
+ run : python eodms_cli.py -u $EODMS_USER -p $EODMS_PASSWORD -i tests\files\RCMImageProducts_Results.csv -max 4 -prc order_csv -o tests\files\test2_auto.geojson -pri low -s
45
45
46
46
# List files
47
47
- name : List files
Original file line number Diff line number Diff line change @@ -110,6 +110,16 @@ jobs:
110
110
run : |
111
111
cd test
112
112
python -m unittest test_prompt.TestEodmsCli.test_wrongcreds
113
+
114
+ # Runs a single command using the runners shell
115
+ - name : Run EODMS-CLI Prompt Test 8 - SAR Toolbox Ordering
116
+ continue-on-error : true
117
+ env :
118
+ EODMS_USER : ${{ secrets.EODMS_USER }}
119
+ EODMS_PASSWORD : ${{ secrets.EODMS_PWD }}
120
+ run : |
121
+ cd test
122
+ python -m unittest test_prompt.TestEodmsCli.test_process6
113
123
114
124
# List files
115
125
- name : List files
You can’t perform that action at this time.
0 commit comments