Merged
Conversation
ci: add coverage comment
Contributor
Contributor
Coverage for Python on macos-latest
|
Contributor
Coverage for Python on ubuntu-latest
|
There was a problem hiding this comment.
Pull request overview
This pull request applies ruff formatting to the entire codebase and adds CI enhancements for formatting checks and coverage reporting. The changes involve standardizing code formatting, updating Python version requirements, and improving CI workflows.
Key changes:
- Applied ruff formatting across all Python modules, converting from single to double quotes
- Updated minimum Python version from 3.6 to 3.9 and added support declarations for Python 3.13-3.14
- Added GitHub Actions workflow for ruff format checking on pull requests
- Enhanced test workflow with coverage comment generation
Reviewed changes
Copilot reviewed 9 out of 11 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
timescale/version.py |
Removed u prefix from docstring, added blank line after docstring |
timescale/utilities.py |
Extensive formatting updates: quote style change, spacing, line breaks, added dateutil to dependencies doc |
timescale/time.py |
Extensive formatting updates: quote style change, spacing, line breaks, dictionary and expression formatting |
timescale/eop.py |
Quote style updates, spacing improvements, line breaks |
timescale/__init__.py |
Docstring formatting, blank line additions |
pyproject.toml |
Removed authors list, updated Python requirement to 3.9+, added ruff config, changed quote style, added Python 3.13-3.14 classifiers |
pixi.lock |
Updated package hash and Python requirement |
MANIFEST.in |
Changed exclusion pattern from *.cfg to *.cff, added new exclusions |
.gitignore |
Added *.mat, pytest.xml, coverage.xml |
.github/workflows/ruff-format.yml |
New workflow for ruff format checking |
.github/workflows/python-request.yml |
Added coverage comment generation step |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ci: add ruff formatting check
ci: add coverage comment to PRs