Skip to content

Commit 5e9e926

Browse files
authored
Updated workflow files
1 parent 1f0f65e commit 5e9e926

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/test2.yml renamed to .github/workflows/cli_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
# Runs a single command using the runners shell
4040
- name: Run EODMS-CLI
4141
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
4545

4646
# List files
4747
- name: List files

.github/workflows/test1.yml renamed to .github/workflows/prompt_tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,16 @@ jobs:
110110
run: |
111111
cd test
112112
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
113123
114124
# List files
115125
- name: List files

0 commit comments

Comments
 (0)