Skip to content

Commit 8c1da64

Browse files
merging with main
Signed-off-by: João Lucas de Sousa Almeida <[email protected]>
2 parents 1c9812f + 14a76a9 commit 8c1da64

File tree

91 files changed

+5835
-1240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+5835
-1240
lines changed

.github/workflows/test.yaml

+28-23
Original file line numberDiff line numberDiff line change
@@ -12,33 +12,11 @@ on:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15+
timeout-minutes: 20
1516
strategy:
1617
matrix:
1718
python-version: ["3.10", "3.11", "3.12"]
1819

19-
steps:
20-
- name: Clone repo
21-
uses: actions/checkout@v3
22-
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
24-
with:
25-
python-version: ${{ matrix.python-version }}
26-
cache: 'pip'
27-
- name: Install dependencies
28-
run: |
29-
python -m pip install --upgrade pip
30-
pip install -r requirements/required.txt -r requirements/test.txt -r requirements/optional.txt
31-
- name: List pip dependencies
32-
run: pip list
33-
- name: Test with pytest
34-
run: |
35-
pytest -s tests
36-
build_weather:
37-
runs-on: ubuntu-latest
38-
strategy:
39-
matrix:
40-
python-version: ["3.11"]
41-
4220
steps:
4321
- name: Clone repo
4422
uses: actions/checkout@v3
@@ -58,3 +36,30 @@ jobs:
5836
- name: Test with pytest
5937
run: |
6038
pytest -s tests
39+
40+
# build_weather:
41+
# runs-on: ubuntu-latest
42+
# strategy:
43+
# matrix:
44+
# python-version: ["3.11"]
45+
46+
# steps:
47+
# - name: Clone repo
48+
# uses: actions/checkout@v3
49+
# - name: Set up Python ${{ matrix.python-version }}
50+
# uses: actions/setup-python@v4
51+
# with:
52+
# python-version: ${{ matrix.python-version }}
53+
# cache: 'pip'
54+
# - name: Install dependencies
55+
# run: |
56+
# python -m pip install --upgrade pip
57+
# pip install -r requirements/required.txt -r requirements/test.txt -r requirements/optional.txt
58+
# pip install git+https://github.com/NASA-IMPACT/Prithvi-WxC.git
59+
# pip install git+https://github.com/IBM/granite-wxc.git
60+
# - name: List pip dependencies
61+
# run: pip list
62+
# - name: Test with pytest
63+
# run: |
64+
# pytest -s tests
65+

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ dist/*
99
**/*pth
1010
.venv/*
1111
venv/*
12-
tests/all_ecos_random/*
12+
examples/notebooks/config.yaml
13+
examples/notebooks/wxc_input_u_v_t_p_output_theta_uw_vw_era5_training_data_hourly_2015_constant_mu_sigma_scaling05.nc
14+
tests/all_ecos_random/*

0 commit comments

Comments
 (0)