Conversation
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
Adds continuous integration/continuous deployment (CI/CD) support, expands the test suite, and bumps package version.
- Introduces comprehensive unit and integration tests for data models and connectors
- Configures GitHub Actions workflows for testing, version updates, and publishing
- Updates packaging setup (
setup.py,pyproject.toml) and adds helper commands inMakefile
Reviewed Changes
Copilot reviewed 28 out of 29 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tests/unit & tests/integration | New unit and integration tests for enums, components, and connectors |
| setup.py & pyproject.toml | Bumped version to 0.2.0, tightened dependency versions, added python_requires |
| .github/workflows/*.yml | Added workflows for version updates, testing, and publishing to PyPI |
| Makefile | Commands for install, test, lint, typecheck, and format |
| avidtools/connectors/atlas.py | Added ATLAS connector implementation |
Comments suppressed due to low confidence (1)
avidtools/connectors/atlas.py:35
- The
requestsmodule is not imported in this file, sorequests.getwill raise a NameError. Addimport requestsat the top of the module.
req = requests.get(ATLAS_HOME + case_study_id + ".yaml")
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.
No description provided.