Add test to check dev dependencies between metricflow
and metricflow-semantics
#3486
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: Required Tests | |
on: | |
pull_request: | |
# run these jobs when a PR is opened, reopened, or updated (synchronize) | |
# synchronize = commit(s) pushed to the pull request | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
metricflow-unit-tests-duckdb: | |
name: MetricFlow Tests (DuckDB) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.12"] | |
steps: | |
- name: Check-out the repo | |
uses: actions/checkout@v3 | |
- name: Test w/ Python ${{ matrix.python-version }} | |
uses: ./.github/actions/run-mf-tests | |
with: | |
python-version: ${{ matrix.python-version }} | |
make-target: "test-include-slow" | |
metricflow-unit-tests-postgres: | |
name: MetricFlow Tests (PostgreSQL) | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: metricflow | |
POSTGRES_PASSWORD: metricflowing | |
POSTGRES_DB: metricflow | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Check-out the repo | |
uses: actions/checkout@v3 | |
- name: Test w/ Python 3.12 | |
uses: ./.github/actions/run-mf-tests | |
with: | |
python-version: "3.12" | |
make-target: "test-postgresql" | |
metricflow-unit-tests: | |
name: MetricFlow Unit Tests | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
needs: [metricflow-unit-tests-duckdb, metricflow-unit-tests-postgres] | |
steps: | |
- name: Check success | |
run: test ${{ needs.metricflow-unit-tests-duckdb.result }} = 'success' -a ${{ needs.metricflow-unit-tests-postgres.result }} = 'success' | |
metricflow-package-tests: | |
name: MetricFlow Packages Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ "3.8", "3.12" ] | |
steps: | |
- name: Check-out the repo | |
uses: actions/checkout@v3 | |
- name: Setup Python ${{ inputs.python-version }} Environment | |
uses: ./.github/actions/setup-python-env | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: Test `metricflow-semantics` Package | |
run: bash scripts/ci_tests/metricflow_semantics_package_test.sh | |
- name: Test `metricflow` Package | |
run: bash scripts/ci_tests/metricflow_package_test.sh | |
metricflow-project-configuration-tests: | |
name: MetricFlow Project Configuration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check-out the repo | |
uses: actions/checkout@v3 | |
- name: Setup Python ${{ inputs.python-version }} Environment | |
uses: ./.github/actions/setup-python-env | |
with: | |
python-version: 3.12 | |
- name: Check Dev Dependencies | |
run: hatch run dev-env:python scripts/ci_tests/metricflow_semantics_package_test.sh |