Skip to content

Commit

Permalink
TST: run on pyston
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi committed Nov 12, 2022
1 parent 8de5e0b commit a1ed04c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,36 @@ jobs:
flags: tests
env_vars: PYTHON
name: ${{ matrix.python }}

pyston:
runs-on: ubuntu-20.04
env:
FORCE_COLOR: true

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install pyston
run: |
wget https://github.com/pyston/pyston/releases/download/pyston_2.3.5/pyston_2.3.5_20.04_amd64.deb
sudo apt install $(pwd)/pyston_2.3.5_20.04_amd64.deb
- name: Install
run: pyston -m pip --disable-pip-version-check install .[test]

- name: Run tests
run: >-
pyston -m pytest --showlocals -vv --cov
--cov-config setup.cfg
--cov-report=xml:coverage-${{ matrix.python }}.xml
- name: Send coverage report
uses: codecov/codecov-action@v1
if: ${{ always() }}
env:
PYTHON: pyston
with:
flags: tests
env_vars: PYTHON
name: pyston

0 comments on commit a1ed04c

Please sign in to comment.