Skip to content

Update packaging requirement from ~=24.1 to ~=24.2 #622

Update packaging requirement from ~=24.1 to ~=24.2

Update packaging requirement from ~=24.1 to ~=24.2 #622

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
schedule:
- cron: '0 20 * * 5'
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install black
run: pip install black
- name: Lint with black
run: black --check --diff .
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
rocket-chat-version: [ '6.7.9', '6.8.7','6.9.7','6.10.6','6.11.3','6.12.1', '6.13.0', 'latest' ]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Start rocket.chat server
uses: isbang/[email protected]
with:
compose-file: docker-compose.yml
env:
ROCKETCHAT_LICENSE: ${{ secrets.ROCKETCHAT_LICENSE }}
ROCKET_CHAT_VERSION: ${{ matrix.rocket-chat-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install pytest-cov requests
- name: Wait for rocket.chat server to be online
run: until curl --silent http://localhost:3000/api/info/; do sleep 15; echo "waiting for Rocket.Chat server to start"; done;
timeout-minutes: 5
- name: Run tests
run: pytest tests rocketchat_API -x --cov-report xml --cov=./
- name: Upload code coverage
uses: codecov/codecov-action@v4
with:
verbose: true
files: coverage.xml
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}