Skip to content

Commit

Permalink
disable CDS testing (as it current migration creates timeout)
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb committed Feb 12, 2024
1 parent 04fa901 commit d89a0cd
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,12 @@ jobs:

run: |
import os
for n in ('ECMWFAPIRC', 'CDSAPIRC'):
m = os.path.expanduser("~/." + n.lower())
if os.environ[n]:
with open(m, "w") as f:
print(os.environ[n], file=f)
# for n in ('ECMWFAPIRC', 'CDSAPIRC'):
n = 'ECMWFAPIRC'
m = os.path.expanduser("~/." + n.lower())
if os.environ[n]:
with open(m, "w") as f:
print(os.environ[n], file=f)
- run: mkdir test-data
- run: echo "dataA" > test-data/dataA.txt
- run: echo "dataB" > test-data/dataB.txt
Expand Down

0 comments on commit d89a0cd

Please sign in to comment.