Skip to content

Commit

Permalink
Merge branch 'main' into jschladen/log-attach-warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hosssha authored Feb 13, 2025
2 parents a496fa3 + 84e971e commit c181900
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 23 deletions.
37 changes: 18 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11" ]
postgres-version: [12, 15]
postgres-version: [12, 15, 17]
os: [ubuntu-20.04, ubuntu-22.04]
include:
- python-version: "3.9"
Expand Down Expand Up @@ -84,21 +84,20 @@ jobs:
source ~/env/bin/activate
bandit -r . -ll -ii -x lemur/tests/,docs
xvfb-run make test-js
# todo: re-enable me once https://github.com/coverallsapp/github-action/issues/205 is resolved
# - name: Coveralls GitHub Action
# uses: coverallsapp/github-action@v2
# with:
# parallel: true
# flag-name: Python ${{ matrix.python-version }} Postgres ${{ matrix.postgres-version }} OS ${{ matrix.os }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# coveralls:
# name: Indicate completion to coveralls.io
# needs: build
# if: ${{ always() }}
# runs-on: ubuntu-latest
# steps:
# - name: Coveralls Finished
# uses: coverallsapp/github-action@v2
# with:
# parallel-finished: true
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
with:
parallel: true
flag-name: Python ${{ matrix.python-version }} Postgres ${{ matrix.postgres-version }} OS ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
coveralls:
name: Indicate completion to coveralls.io
needs: build
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ test-js:
test-python:
@echo "--> Running Python tests"
coverage run --source lemur -m pytest
coverage xml
@echo ""

lint: lint-python lint-js
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ configobj==5.0.9
# certbot
coverage==7.6.11
# via -r requirements-tests.txt
cryptography==44.0.0
cryptography==44.0.1
# via
# -r requirements-tests.txt
# acme
Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ configobj==5.0.9
# certbot
coverage==7.6.11
# via -r requirements-tests.txt
cryptography==44.0.0
cryptography==44.0.1
# via
# -r requirements-docs.in
# -r requirements-tests.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements-tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ configobj==5.0.9
# certbot
coverage==7.6.11
# via -r requirements-tests.in
cryptography==44.0.0
cryptography==44.0.1
# via
# -r requirements.txt
# acme
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ configargparse==1.7
# via certbot
configobj==5.0.9
# via certbot
cryptography==44.0.0
cryptography==44.0.1
# via
# -r requirements.in
# acme
Expand Down

0 comments on commit c181900

Please sign in to comment.