Skip to content

Commit 80027cd

Browse files
committed
Revert CI changes for now (commented for later)
1 parent 8bcf58b commit 80027cd

File tree

2 files changed

+27
-25
lines changed

2 files changed

+27
-25
lines changed

.github/workflows/testing.yml

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
df -h
4444
4545
- name: Checkout code
46-
uses: actions/checkout@v6
46+
uses: actions/checkout@v4 # uses: actions/checkout@v6
4747

4848
- name: Install uv
4949
uses: astral-sh/setup-uv@v6
@@ -72,20 +72,22 @@ jobs:
7272
run: uv run dlc-live-test --nodisplay
7373

7474
- name: Run DLC Live Unit Tests
75-
run: uv run pytest --cov=dlclive --cov-report=xml --cov-report=term-missing
75+
run: uv run pytest
76+
# - name: Run DLC Live Unit Tests
77+
# run: uv run pytest --cov=dlclive --cov-report=xml --cov-report=term-missing
7678

77-
- name: Coverage Report
78-
uses: codecov/codecov-action@v5
79-
with:
80-
files: ./coverage.xml
81-
flags: ${{ matrix.os }}-py${{ matrix.python-version }}
82-
name: codecov-${{ matrix.os }}-py${{ matrix.python-version }}
83-
- name: Add coverage to job summary
84-
if: always()
85-
shell: bash
86-
run: |
87-
uv run python -m coverage report -m > coverage.txt
88-
echo "## Coverage (dlclive)" >> "$GITHUB_STEP_SUMMARY"
89-
echo '```' >> "$GITHUB_STEP_SUMMARY"
90-
cat coverage.txt >> "$GITHUB_STEP_SUMMARY"
91-
echo '```' >> "$GITHUB_STEP_SUMMARY"
79+
# - name: Coverage Report
80+
# uses: codecov/codecov-action@v5
81+
# with:
82+
# files: ./coverage.xml
83+
# flags: ${{ matrix.os }}-py${{ matrix.python-version }}
84+
# name: codecov-${{ matrix.os }}-py${{ matrix.python-version }}
85+
# - name: Add coverage to job summary
86+
# if: always()
87+
# shell: bash
88+
# run: |
89+
# uv run python -m coverage report -m > coverage.txt
90+
# echo "## Coverage (dlclive)" >> "$GITHUB_STEP_SUMMARY"
91+
# echo '```' >> "$GITHUB_STEP_SUMMARY"
92+
# cat coverage.txt >> "$GITHUB_STEP_SUMMARY"
93+
# echo '```' >> "$GITHUB_STEP_SUMMARY"

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ include = ["dlclive*"]
9191
[tool.setuptools.package-data]
9292
dlclive = ["check_install/*"]
9393

94-
[tool.ruff]
95-
lint.select = ["E", "F", "B", "I", "UP"]
96-
lint.ignore = ["E741"]
97-
target-version = "py310"
98-
fix = true
99-
line-length = 120
94+
# [tool.ruff]
95+
# lint.select = ["E", "F", "B", "I", "UP"]
96+
# lint.ignore = ["E741"]
97+
# target-version = "py310"
98+
# fix = true
99+
# line-length = 120
100100

101-
[tool.ruff.lint.pydocstyle]
102-
convention = "google"
101+
# [tool.ruff.lint.pydocstyle]
102+
# convention = "google"

0 commit comments

Comments
 (0)