Skip to content

Commit

Permalink
TMP TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
tdesveaux committed Nov 2, 2024
1 parent 0ac01e7 commit 1c9fb99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 42 deletions.
43 changes: 2 additions & 41 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.12"]

env:
# Needed to ignore specific warns, otherwise, it'll warn a generic message
Expand Down Expand Up @@ -48,44 +48,5 @@ jobs:
python -c "import win32api"
- name: "Run tests for ${{ matrix.python-version }}"
run: "python -m twisted.trial --reporter=text --rterrors --exitfirst buildbot.test buildbot_worker.test"
timeout-minutes: 30

linux:
name: Linux / python ${{ matrix.python-version }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

env:
# Needed to ignore specific warns, otherwise, it'll warn a generic message
SQLALCHEMY_WARN_20: 1

steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
cache: 'pip'
cache-dependency-path: |
requirements-ci.txt
requirements-cidb.txt
master/setup.py
worker/setup.py
pkg/setup.py
- name: "Install dependencies"
run: |
python -c "import sys; print(sys.prefix)"
python -c "import sys; print(sys.exec_prefix)"
python -c "import sys; print(sys.executable)"
python -V -V
python -m pip install -U pip setuptools wheel
python -m pip install -r requirements-ci.txt
python -m pip list
- name: "Run tests for ${{ matrix.python-version }}"
run: "python -m twisted.trial --reporter=text --rterrors --exitfirst buildbot.test buildbot_worker.test"
run: "python -m twisted.trial -j4 --reporter=text --rterrors --exitfirst buildbot.test buildbot_worker.test"
timeout-minutes: 30
2 changes: 1 addition & 1 deletion .github/workflows/cidb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI (DB)
on:
push:
branches:
- fake_master
# - fake_master
- release

permissions:
Expand Down

0 comments on commit 1c9fb99

Please sign in to comment.