https://github.com/esnme/ultrajson
Raw File
Tip revision: 682c6601569980e9a8a05378d3c1478db30384bc authored by Hugo van Kemenade on 17 December 2021, 15:27:00 UTC
Merge pull request #493 from bwoodsend/strip-binaries
Tip revision: 682c660
.travis.yml
language: python
cache: pip

arch:
  - ppc64le
  - arm64
  - s390x

# Only test oldest and newest supported versions
python:
  - "3.7"
  - "3.10-dev"

jobs:
  fast_finish: true

install:
  - pip install -U pip
  - pip install -U pytest
  - pip install .

script: pytest
back to top