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

Use JS/Python prototype instead of conditions to choose the correct JS <=> Brython conversion method #2300

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Move functions back to js_object.js

17024bf
Select commit
Loading
Failed to load commit list.
Open

Use JS/Python prototype instead of conditions to choose the correct JS <=> Brython conversion method #2300

Move functions back to js_object.js
17024bf
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Nov 16, 2023 in 2m 28s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #2300 Use JS/Python prototype instead of conditions to choose the correct JS <=> Brython conversion method.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Node.js Python OS State
2679.1 node Linux passed
2679.2 3.12 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Node.js Version node
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "node_js": [
    "node"
  ],
  "jobs": {
    "include": [
      {
        "addons": {
          "chrome": "stable",
          "firefox": "latest",
          "apt": {
            "sources": [
              {
                "sourceline": "ppa:deadsnakes/ppa"
              }
            ],
            "packages": [
              "libnss3",
              "python3.12"
            ]
          }
        },
        "services": [
          "xvfb"
        ],
        "before_install": [
          "npm install testem",
          "./node_modules/.bin/testem launchers"
        ],
        "before_script": [
          "(cd scripts && python3.12 make_doc.py)",
          "(cd scripts && python3.12 make_dist.py)"
        ],
        "script": [
          "./node_modules/.bin/testem --launch Firefox -t www/tests/run_tests.html ci"
        ]
      },
      {
        "language": "python",
        "python": "3.12",
        "before_install": [
          "pip install --upgrade pip"
        ],
        "before_script": [
          "pip install flake8"
        ],
        "script": [
          "EXCLUDE=./.*,www/src/Lib,www/tests",
          "flake8 --builtins=__BRYTHON__ --exclude=$EXCLUDE --select=E9,F63,F7,F82 --show-source --statistics"
        ]
      }
    ]
  }
}