|
82 | 82 | run: pip install --upgrade --upgrade-strategy eager -e . |
83 | 83 | - name: Run tests |
84 | 84 | run: python -m tests.test_centrifugal_pump |
| 85 | + test_composite: |
| 86 | + timeout-minutes: 5 |
| 87 | + runs-on: ubuntu-latest |
| 88 | + steps: |
| 89 | + - uses: actions/checkout@v3 |
| 90 | + - name: Set up Python |
| 91 | + uses: actions/setup-python@v4 |
| 92 | + with: |
| 93 | + python-version: '3.7' |
| 94 | + - name: Install dependencies cache |
| 95 | + uses: actions/cache@v2 |
| 96 | + with: |
| 97 | + path: ~/.cache/pip |
| 98 | + key: pip-cache |
| 99 | + - name: Update |
| 100 | + run: pip install --upgrade --upgrade-strategy eager -e . |
| 101 | + - name: Run tests |
| 102 | + run: python -m tests.test_composite |
85 | 103 | test_data_model: |
86 | 104 | timeout-minutes: 15 |
87 | 105 | runs-on: ubuntu-latest |
@@ -193,7 +211,7 @@ jobs: |
193 | 211 | - name: Run tests |
194 | 212 | run: python -m tests.test_estimate_params |
195 | 213 | test_examples: |
196 | | - timeout-minutes: 20 |
| 214 | + timeout-minutes: 25 |
197 | 215 | runs-on: ubuntu-latest |
198 | 216 | steps: |
199 | 217 | - uses: actions/checkout@v3 |
@@ -264,6 +282,24 @@ jobs: |
264 | 282 | run: pip install --upgrade --upgrade-strategy eager -e . |
265 | 283 | - name: Run tests |
266 | 284 | run: python -m tests.test_powertrain |
| 285 | + test_predictors: |
| 286 | + timeout-minutes: 5 |
| 287 | + runs-on: ubuntu-latest |
| 288 | + steps: |
| 289 | + - uses: actions/checkout@v3 |
| 290 | + - name: Set up Python |
| 291 | + uses: actions/setup-python@v4 |
| 292 | + with: |
| 293 | + python-version: '3.7' |
| 294 | + - name: Install dependencies cache |
| 295 | + uses: actions/cache@v2 |
| 296 | + with: |
| 297 | + path: ~/.cache/pip |
| 298 | + key: pip-cache |
| 299 | + - name: Update |
| 300 | + run: pip install --upgrade --upgrade-strategy eager -e . |
| 301 | + - name: Run tests |
| 302 | + run: python -m tests.test_predictors |
267 | 303 | test_serialization: |
268 | 304 | timeout-minutes: 5 |
269 | 305 | runs-on: ubuntu-latest |
@@ -300,6 +336,24 @@ jobs: |
300 | 336 | run: pip install --upgrade --upgrade-strategy eager -e . |
301 | 337 | - name: Run tests |
302 | 338 | run: python -m tests.test_sim_result |
| 339 | + test_state_estimators: |
| 340 | + timeout-minutes: 5 |
| 341 | + runs-on: ubuntu-latest |
| 342 | + steps: |
| 343 | + - uses: actions/checkout@v3 |
| 344 | + - name: Set up Python |
| 345 | + uses: actions/setup-python@v4 |
| 346 | + with: |
| 347 | + python-version: '3.7' |
| 348 | + - name: Install dependencies cache |
| 349 | + uses: actions/cache@v2 |
| 350 | + with: |
| 351 | + path: ~/.cache/pip |
| 352 | + key: pip-cache |
| 353 | + - name: Update |
| 354 | + run: pip install --upgrade --upgrade-strategy eager -e . |
| 355 | + - name: Run tests |
| 356 | + run: python -m tests.test_state_estimators |
303 | 357 | test_surrogates: |
304 | 358 | timeout-minutes: 5 |
305 | 359 | runs-on: ubuntu-latest |
@@ -357,72 +411,24 @@ jobs: |
357 | 411 | run: pip install --upgrade --upgrade-strategy eager -e . |
358 | 412 | - name: Run tests |
359 | 413 | run: python -m tests.test_uav_model |
360 | | - # test_prog_algs_released: |
361 | | - # timeout-minutes: 30 |
362 | | - # runs-on: ubuntu-latest |
363 | | - # strategy: |
364 | | - # matrix: |
365 | | - # python-version: ['3.9'] |
366 | | - # steps: |
367 | | - # - uses: actions/checkout@v2 |
368 | | - # - name: Set up Python ${{ matrix.python-version }} |
369 | | - # uses: actions/setup-python@v2 |
370 | | - # with: |
371 | | - # python-version: ${{ matrix.python-version }} |
372 | | - # - name: Install dependencies |
373 | | - # run: | |
374 | | - # python -m pip install --upgrade pip |
375 | | - # python -m pip install -e . |
376 | | - # python -m pip install notebook |
377 | | - # python -m pip install testbook |
378 | | - # python -m pip install requests |
379 | | - # - name: Clone prog_algs |
380 | | - # uses: actions/checkout@v2 |
381 | | - # with: |
382 | | - # repository: nasa/prog_algs |
383 | | - # ref: refs/heads/master |
384 | | - # path: prog_algs |
385 | | - # - name: Install prog_algs |
386 | | - # run: | |
387 | | - # python -m pip install -e ./prog_algs |
388 | | - # - name: Run tests |
389 | | - # run: | |
390 | | - # cd prog_algs |
391 | | - # python -m tests |
392 | | - test_prog_algs_dev: |
393 | | - timeout-minutes: 30 |
| 414 | + test_uncertain_data: |
| 415 | + timeout-minutes: 5 |
394 | 416 | runs-on: ubuntu-latest |
395 | | - strategy: |
396 | | - matrix: |
397 | | - python-version: [ '3.9'] |
398 | 417 | steps: |
399 | 418 | - uses: actions/checkout@v3 |
400 | | - - name: Set up Python ${{ matrix.python-version }} |
| 419 | + - name: Set up Python |
401 | 420 | uses: actions/setup-python@v4 |
402 | 421 | with: |
403 | | - python-version: ${{ matrix.python-version }} |
| 422 | + python-version: '3.7' |
404 | 423 | - name: Install dependencies cache |
405 | 424 | uses: actions/cache@v2 |
406 | 425 | with: |
407 | 426 | path: ~/.cache/pip |
408 | 427 | key: pip-cache |
409 | 428 | - name: Update |
410 | | - run: | |
411 | | - pip install --upgrade --upgrade-strategy eager -e . |
412 | | - pip install notebook |
413 | | - pip install testbook |
414 | | - - name: Clone prog_algs |
415 | | - uses: actions/checkout@v3 |
416 | | - with: |
417 | | - repository: nasa/prog_algs |
418 | | - ref: refs/heads/dev |
419 | | - path: prog_algs |
420 | | - - name: Install prog_algs |
421 | | - run: pip install -e ./prog_algs |
| 429 | + run: pip install --upgrade --upgrade-strategy eager -e . |
422 | 430 | - name: Run tests |
423 | | - run: | |
424 | | - cd prog_algs |
425 | | - python -m tests |
| 431 | + run: python -m tests.test_uncertain_data |
426 | 432 | copyright: |
427 | 433 | timeout-minutes: 5 |
428 | 434 | runs-on: ubuntu-latest |
|
0 commit comments