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

formatting numbers to 2 sig figs in attestations #1028

Merged
merged 5 commits into from
Jul 20, 2023

Merge branch 'main' into clean_attestations

b7a2888
Select commit
Loading
Failed to load commit list.
Merged

formatting numbers to 2 sig figs in attestations #1028

Merge branch 'main' into clean_attestations
b7a2888
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Jul 20, 2023 in 28m 14s

Build Failed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #1028 formatting numbers to 2 sig figs in attestations.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Xenial)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "env": [
    "global=DOCTR_DEPLOY_ENCRYPTION_KEY=[secure][secure]"
  ],
  "install": [
    "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\"",
    "conda config --set always_yes yes --set changeps1 no",
    "conda config --add channels conda-forge",
    "conda update conda",
    "conda create -n test --file requirements/run.txt python=3",
    "source activate test",
    "python setup.py install"
  ],
  "script": [
    "set -e",
    "conda install --file requirements/test.txt",
    "coverage run run_tests.py",
    "coverage report -m",
    "codecov",
    "conda install doctr",
    "conda install --file requirements/doc.txt",
    "cd docs",
    "make html",
    "cd ..",
    "doctr deploy . --deploy-repo ergs/regolith-docs --built-docs ./docs/_build/html"
  ],
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  }
}