Skip to content

fix: fix incorrect start line no caused by outer frame

304fbd3
Select commit
Loading
Failed to load commit list.
Open

fix: get correct source from redefined class #704

fix: fix incorrect start line no caused by outer frame
304fbd3
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Mar 2, 2025 in 53s

Build Failed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #704 fix: get correct source from redefined class.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has 11 jobs, running in parallel.

Job Python ENV OS State Notes
991.1 3.8 Linux passed
991.2 3.9 COVERAGE="true" Linux failed
991.3 3.10 Linux passed
991.4 3.11 Linux passed
991.5 3.12 Linux passed
991.6 3.13 Linux passed
991.7 pypy3.8-7.3.9 Linux passed
991.8 pypy3.9-7.3.9 Linux passed
991.9 3.14-dev Linux failed This job is allowed to fail.
991.10 pypy3.10-7.3.18 Linux failed This job is allowed to fail.
991.11 pypy3.11-7.3.18 Linux failed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "cache": {
    "pip": true
  },
  "before_install": [
    "set -e",
    "if [[ $COVERAGE == \"true\" ]]; then pip install coverage; fi",
    "if [[ $NUMPY == \"true\" ]]; then pip install numpy; fi"
  ],
  "install": [
    "python -m pip install ."
  ],
  "script": [
    "for test in dill/tests/__init__.py; do echo $test ; if [[ $COVERAGE == \"true\" ]]; then coverage run -a $test > /dev/null; else python $test > /dev/null; fi ; done",
    "for test in dill/tests/test_*.py; do echo $test ; if [[ $COVERAGE == \"true\" ]]; then coverage run -a $test > /dev/null; else python $test > /dev/null; fi ; done"
  ],
  "after_success": [
    "if [[ $COVERAGE == \"true\" ]]; then bash <(curl -s https://codecov.io/bash); else echo ''; fi",
    "if [[ $COVERAGE == \"true\" ]]; then coverage report; fi"
  ],
  "jobs": {
    "include": [
      {
        "python": "3.8",
        "env": [
          {
          }
        ]
      },
      {
        "python": "3.9",
        "env": [
          {
            "COVERAGE": "\"true\""
          },
          {
            "NUMPY": "\"true\""
          }
        ]
      },
      {
        "python": "3.10",
        "env": [
          {
          }
        ]
      },
      {
        "python": "3.11",
        "env": [
          {
          }
        ]
      },
      {
        "python": "3.12",
        "env": [
          {
          }
        ]
      },
      {
        "python": "3.13",
        "env": [
          {
          }
        ]
      },
      {
        "python": "3.14-dev",
        "env": [
          {
          }
        ]
      },
      {
        "python": "pypy3.8-7.3.9",
        "env": [
          {
          }
        ]
      },
      {
        "python": "pypy3.9-7.3.9",
        "env": [
          {
          }
        ]
      },
      {
        "python": "pypy3.10-7.3.18",
        "env": [
          {
          }
        ]
      },
      {
        "python": "pypy3.11-7.3.18",
        "env": [
          {
          }
        ]
      }
    ],
    "allow_failures": [
      {
        "python": "3.14-dev"
      },
      {
        "python": "pypy3.10-7.3.18"
      },
      {
        "python": "pypy3.11-7.3.18"
      }
    ],
    "fast_finish": true
  }
}