Try to work around issue with python 3.12 and pip. #385
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push] | |
jobs: | |
tests: | |
name: ${{ matrix.peewee-backend }} - ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
services: | |
mysql: | |
image: mariadb:latest | |
env: | |
MYSQL_ROOT_PASSWORD: peewee | |
MYSQL_DATABASE: peewee_test | |
ports: | |
- 3306:3306 | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: peewee | |
POSTGRES_DB: peewee_test | |
ports: | |
- 5432:5432 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.7, 3.9, "3.11"] | |
peewee-backend: | |
- "sqlite" | |
- "postgresql" | |
- "mysql" | |
exclude: | |
- python-version: 2.7 | |
peewee-backend: postgresql | |
include: | |
- python-version: 3.7 | |
peewee-backend: cockroachdb | |
- python-version: "3.11" | |
peewee-backend: cockroachdb | |
- python-version: "3.11" | |
peewee-backend: psycopg3 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: deps | |
env: | |
PGUSER: postgres | |
PGHOST: 127.0.0.1 | |
PGPASSWORD: peewee | |
run: | | |
pip install psycopg2-binary cython pymysql 'apsw' mysql-connector | |
python setup.py build_ext -i | |
psql peewee_test -c 'CREATE EXTENSION hstore;' | |
- name: sqlcipher | |
if: ${{ matrix.python-version != 2.7 }} | |
run: pip install sqlcipher3-binary | |
- name: psycopg3 | |
if: ${{ matrix.python-version != 2.7 }} | |
run: pip install 'psycopg[binary]' | |
- name: crdb | |
if: ${{ matrix.peewee-backend == 'cockroachdb' }} | |
run: | | |
wget -qO- https://binaries.cockroachdb.com/cockroach-v22.2.6.linux-amd64.tgz | tar xz | |
./cockroach-v22.2.6.linux-amd64/cockroach start-single-node --insecure --background | |
./cockroach-v22.2.6.linux-amd64/cockroach sql --insecure -e 'create database peewee_test;' | |
- name: runtests ${{ matrix.peewee-backend }} - ${{ matrix.python-version }} | |
env: | |
PEEWEE_TEST_BACKEND: ${{ matrix.peewee-backend }} | |
PGUSER: postgres | |
PGHOST: 127.0.0.1 | |
PGPASSWORD: peewee | |
run: python runtests.py --mysql-user=root --mysql-password=peewee -s |