Skip to content

Traits 6.4.2 bugfix release #704

Traits 6.4.2 bugfix release

Traits 6.4.2 bugfix release #704

# Test run with no optional dependencies installed, to help
# detect any accidental dependencies.
name: Core tests
on:
pull_request
jobs:
core:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install local package
run: |
python -m pip install --upgrade pip
# Uninstall setuptools so that the tests will catch any accidental
# dependence of the Traits source on setuptools. Note that in future
# setuptools may not exist in a newly-created venv
# https://github.com/python/cpython/issues/95299
python -m pip uninstall -y setuptools
python -m pip install .
python -m pip list
- name: Test Traits package
run: |
mkdir testdir
cd testdir
python -m unittest discover -v traits