mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-03 00:11:17 +08:00
* Bump openbb version * Small fixes * update version * Add python 3.12 to noxfile * ^ * python 3.12 compatibility fixes * fix typing * fix currency snapshots * black * Enable test collection on 3.12 * Update mock called once assertion syntax * remove logging assertion * fix command runner chart assertion --------- Co-authored-by: Theodore Aptekarev <aptekarev@gmail.com>
47 lines
1.2 KiB
YAML
Vendored
47 lines
1.2 KiB
YAML
Vendored
name: 🖥️ Unit test CLI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
paths:
|
|
- 'cli/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
unit_tests:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
python_version:
|
|
["3.9", "3.10", "3.11", "3.12"]
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- name: Install Python ${{ matrix.python_version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python_version }}
|
|
allow-prereleases: true
|
|
cache: "pip"
|
|
|
|
- name: Cache pip packages
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('cli/poetry.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
|
|
- name: Run tests
|
|
run: |
|
|
pip install nox
|
|
nox -f .github/scripts/noxfile.py -s unit_test_cli --python ${{ matrix.python_version }}
|