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

feat: add src/netius/adapters to typing #37

Merged
merged 8 commits into from
Dec 27, 2023

Merge branch 'master' into src/netius/adapters/fs.pyi

8f9786d
Select commit
Loading
Failed to load commit list.
Merged

feat: add src/netius/adapters to typing #37

Merge branch 'master' into src/netius/adapters/fs.pyi
8f9786d
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Dec 27, 2023 in 10m 18s

Build Errored

The build errored. 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 #37 feat: add src/netius/adapters/base.pyi to typing.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has eight jobs, running in parallel.

Job Python ENV OS State
4068.1 2.7 HTTPBIN=httpbin.bemisc.com Linux errored
4068.2 3.4 HTTPBIN=httpbin.bemisc.com Linux errored
4068.3 3.5 HTTPBIN=httpbin.bemisc.com Linux errored
4068.4 3.6 HTTPBIN=httpbin.bemisc.com Linux errored
4068.5 pypy3 HTTPBIN=httpbin.bemisc.com Linux errored
4068.6 3.8 HTTPBIN=httpbin.bemisc.com Linux errored
4068.7 pypy HTTPBIN=httpbin.bemisc.com Linux errored
4068.8 pypy3 HTTPBIN=httpbin.bemisc.com Linux errored

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Trusty)
Python Versions 2.7, 3.4, 3.5, 3.6, pypy3
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "python": [
    "2.7",
    "3.4",
    "3.5",
    "3.6",
    "pypy3"
  ],
  "before_install": [
    "pip install --upgrade pip setuptools"
  ],
  "install": [
    "pip install -r requirements.txt",
    "if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then pip install coveralls; fi"
  ],
  "env": [
    "jobs={:HTTPBIN=>\"httpbin.bemisc.com\"}"
  ],
  "script": [
    "if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coverage run --source=netius setup.py test; else python setup.py test; fi"
  ],
  "after_success": [
    "if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then coveralls; fi"
  ],
  "notifications": {
    "slack": [
      {
        "rooms": [
          "hivesolutions:838m5XXohsuxjWI0mSzghWOK"
        ]
      }
    ]
  },
  "jobs": {
    "include": [
      {
        "python": "3.8",
        "dist": "xenial"
      },
      {
        "python": "pypy",
        "dist": "xenial"
      },
      {
        "python": "pypy3",
        "dist": "xenial"
      }
    ]
  }
}