Skip to content

fix(core): restore dind test #1406

fix(core): restore dind test

fix(core): restore dind test #1406

Workflow file for this run

# Continuous Integration for the core package
name: core
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run-tests-and-coverage:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: ./.github/actions/setup-env
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: poetry install --all-groups
- name: debug dind
run: DIND=1 poetry run pytest core/tests/test_docker_in_docker.py
# - name: Run twine check
# run: rm -f LICENSE.txt && poetry build && poetry run twine check dist/*.tar.gz
# - name: Run tests
# run: make core/tests
# - name: Rename coverage file
# run: mv .coverage .coverage.${{ matrix.python-version}}
# - name: "Save coverage artifact"
# uses: actions/upload-artifact@v4
# with:
# name: "coverage-artifact-${{ matrix.python-version}}"
# include-hidden-files: true
# path: ".coverage.*"
# retention-days: 1
# - name: Run doctests
# run: make core/doctests
#
# coverage-compile:
# needs: "run-tests-and-coverage"
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python
# uses: ./.github/actions/setup-env
# - name: Install Python dependencies
# run: poetry install --all-extras
# - name: "Download coverage artifacts"
# uses: actions/download-artifact@v4
# with:
# pattern: "coverage-artifact-*"
# merge-multiple: true
# - name: Compile coverage
# run: make coverage
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}