Skip to content

Run pep8

8407b10
Select commit
Loading
Failed to load commit list.
Draft

Added test whether pure function calls impure function #608

Run pep8
8407b10
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed Mar 30, 2026 in 15m 34s

Build Failed

The build failed, just like the previous build.

Details

This is a normal build for the issue607_pureFunctions branch. You should be able to reproduce it by checking out the branch locally.

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 Python
Operating System Linux (Focal)
Python Version 3.12
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "python": [
    "3.12"
  ],
  "cache": {
    "pip": true
  },
  "env": [
    "global={:DOCKER_REPONAME=>\"lbnlblum\"}={:OMC_VERSION=>\"ubuntu-2404-omc:1.26.3-1\"}={:OPTIMICA_VERSION=>\"travis-ubuntu-2404-optimica:1.66\"}={:DYMOLA_VERSION=>\"travis_ubuntu-2404_dymola:2026x-x86_64\"}={:MPLBACKEND=>\"agg\"}"
  ],
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "services": [
    "docker",
    "xvfb"
  ],
  "addons": {
    "apt": {
      "packages": [
        "tidy"
      ]
    }
  },
  "before_install": [
    "chmod +x buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/omc",
    "sudo cp buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/omc /usr/local/bin/",
    "chmod +x buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/dymola",
    "cp buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/dymola $HOME/bin/",
    "chmod +x buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/jm_ipython.sh",
    "sudo cp buildingspy/tests/MyModelicaLibrary/Resources/Scripts/travis/bin/jm_ipython.sh /usr/local/bin/",
    "echo \"$DOCKER_PASSWORD\" | docker login -u \"$DOCKER_USERNAME\" --password-stdin",
    "docker pull \"$DOCKER_REPONAME\"/${OMC_VERSION}",
    "docker pull \"$DOCKER_REPONAME\"/${DYMOLA_VERSION}",
    "docker pull \"$DOCKER_REPONAME\"/${OPTIMICA_VERSION}",
    "python -m pip install --upgrade pip"
  ],
  "install": [
    "pip install -r requirements.txt",
    "pip install ."
  ],
  "script": [
    "omc --version",
    "make pep8 PEP8_CORRECT_CODE=true",
    "make doctest",
    "make unittest_development_error_dictionary",
    "make unittest_development_merger",
    "make unittest_development_refactor",
    "make unittest_development_regressiontest_openmodelica",
    "make unittest_development_regressiontest_optimica",
    "make unittest_development_regressiontest",
    "make unittest_development_Validator",
    "make unittest_examples_dymola",
    "make unittest_io_outputfile",
    "make unittest_io_postprocess",
    "make unittest_simulate_Dymola",
    "make unittest_simulate_Optimica",
    "make unittest_simulate_Simulator",
    "pip install -r doc/requirements.txt && \\\nmake doc;\n"
  ],
  "after_failure": [
    "for ff in `find . -name '*.log'`; do\n  echo \"*** Content of $ff\"\n  cat $ff\n  echo \"*** End of $ff\"\ndone"
  ]
}