Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix ATL08 delta_time dimension read error #470

Merged
merged 5 commits into from
Nov 14, 2023

GitHub action UML generation auto-update

b2f0787
Select commit
Loading
Failed to load commit list.
Merged

fix ATL08 delta_time dimension read error #470

GitHub action UML generation auto-update
b2f0787
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Nov 14, 2023 in 13m 18s

Build Errored

The build errored. This is a change from the previous build, which failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #470 fix ATL08 delta_time dimension read error.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in two sequential stages.

Stage 1: basic tests

This stage errored.

Job OS State
1984.1 Linux errored

Stage 2: behind Earthdata

This stage canceled.

Job OS State
1984.2 Linux canceled

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "before_install": [
    "sudo apt-get update",
    "wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh",
    "bash miniconda.sh -b -p $HOME/miniconda",
    "export PATH=\"$HOME/miniconda/bin:$PATH\"",
    "hash -r",
    "conda config --set always_yes yes --set changeps1 no",
    "conda update -q conda",
    "conda info -a"
  ],
  "install": [
    "conda create --name icepyx-env --channel conda-forge python=3.10 proj geos",
    "source activate icepyx-env",
    "pip install -r requirements.txt -r requirements-dev.txt",
    "pip install -e .[complete]"
  ],
  "stages": [
    {
      "name": "basic tests",
      "if": "(type = pull_request) OR (type = push AND repo = icesat2py/icepyx AND branch IN (main, development))"
    },
    {
      "name": "behind Earthdata",
      "if": "branch = main OR commit_message =~ nsidc_tests OR type = cron"
    }
  ],
  "jobs": {
    "include": [
      {
        "stage": "basic tests",
        "script": [
          "pytest icepyx/ --verbose --cov app --ignore icepyx/tests/test_behind_NSIDC_API_login.py"
        ],
        "after_success": [
          "codecov/codecov-action@v3"
        ]
      },
      {
        "stage": "behind Earthdata",
        "script": [
          "export NSIDC_LOGIN=$NSIDC_LOGIN",
          "pytest icepyx/tests/test_behind_NSIDC_API_login.py"
        ]
      }
    ]
  }
}