forked from 0xHashstack/yield-server
-
Notifications
You must be signed in to change notification settings - Fork 1
313 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
piyyy314
wants to merge
40
commits into
g1nt0ki:master
Choose a base branch
from
piyyy314:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
313 #1
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
bc1eab7
fix: package.json & package-lock.json to reduce vulnerabilities
snyk-bot b3cac4c
Merge pull request #2 from piyyy314/snyk-fix-1b2ed9bfa3d3824276f3c9ac…
piyyy314 ed66e24
fix: package.json & package-lock.json to reduce vulnerabilities
snyk-bot 227aba4
fix: src/adaptors/package.json & src/adaptors/package-lock.json to re…
snyk-bot d1fb29c
Merge pull request #5 from piyyy314/snyk-fix-1e4bd44416415f9bf7cae756…
piyyy314 d3a1b9d
Merge pull request #3 from piyyy314/snyk-fix-ba7d026be739dda9fc0deebc…
piyyy314 f5989d2
fix: src/adaptors/package.json & src/adaptors/package-lock.json to re…
snyk-bot 0f7aea4
fix: package.json & package-lock.json to reduce vulnerabilities
snyk-bot 16099a0
Add environment.yml file with dependencies
piyyy314 aeb3482
Add GitHub Actions workflow for Python package publishing
piyyy314 51c81c4
fix: package.json & package-lock.json to reduce vulnerabilities (#13)
piyyy314 64008ca
CodeRabbit Generated Unit Tests: Add generated unit tests (#17)
coderabbitai[bot] e492d80
fix: package.json & package-lock.json to reduce vulnerabilities
snyk-bot 94f99e3
fix: src/adaptors/package.json & src/adaptors/package-lock.json to re…
piyyy314 26e92b9
Fix invalid JSON in package-lock.json and patch axios/lodash vulnerab…
Copilot 76e98e2
CodeRabbit Generated Unit Tests: Add unit tests for PR changes (#18)
coderabbitai[bot] bc65c82
CodeRabbit Generated Unit Tests: Add unit tests for PR changes (#22)
coderabbitai[bot] 64484f9
Initial plan
Copilot 4e9199d
Fix CI: add environment.yml with proper conda format and python-packa…
Copilot 27489f6
Remove redundant conda installs and add permissions to workflow
Copilot c1c4563
Apply review feedback: delete python-publish.yml, fix workflow trigge…
Copilot e27c3ec
Add smoke test and conda CI workflow to fix pytest exit code 5 (#26)
Copilot 4f29a49
Initial plan
Copilot 3710ed0
Initial plan
Copilot 276ee65
Update package.json
piyyy314 b8955f6
Update src/adaptors/package.json
piyyy314 751dc10
Merge pull request #28 from piyyy314/copilot/add-minimal-test-file
piyyy314 2f065f7
Initial plan
Copilot 438778d
Fix pytest exit code 5: update workflow and add placeholder test
Copilot e8a991a
Potential fix for pull request finding
piyyy314 38c2f31
Revert exit-code-5 workaround and remove redundant placeholder test
Copilot f7427f5
Merge pull request #29 from piyyy314/copilot/fix-python-package-conda…
piyyy314 d60a1f6
Merge branch 'master' into copilot/add-environment-yml-file
piyyy314 fd14553
Merge pull request #27 from piyyy314/copilot/add-environment-yml-file
piyyy314 3be5e77
Initial plan
Copilot 51dfa24
Add tests/test_placeholder.py and tests/__init__.py to fix pytest exi…
Copilot 32f15d7
Add docstring to test_placeholder explaining its purpose
Copilot cd124cd
Merge pull request #30 from piyyy314/copilot/add-placeholder-test-file
piyyy314 171887d
Create LICENSE
piyyy314 24c2e3b
Merge pull request #25 from piyyy314/copilot/fix-github-actions-job-7…
piyyy314 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| name: Python Package using Conda | ||
|
|
||
| on: | ||
| push: | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| build-linux: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Python 3.10 | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.10' | ||
| - name: Add conda to system path | ||
| run: | | ||
| # $CONDA is an environment variable pointing to the root of the miniconda directory | ||
| echo $CONDA/bin >> $GITHUB_PATH | ||
| - name: Install dependencies | ||
| run: | | ||
| conda env update --file environment.yml --name base | ||
| - name: Lint with flake8 | ||
| run: | | ||
| # stop the build if there are Python syntax errors or undefined names | ||
| flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
| # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
| flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
| - name: Test with pytest | ||
| run: | | ||
| pytest | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| .DS_Store | ||
| node_modules | ||
| .pytest_cache/ | ||
| __pycache__/ | ||
| ccImages | ||
| *.env | ||
| .vscode/ | ||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| MIT License | ||
|
|
||
| Copyright (c) 2026 piyyy314 | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| name: pitty313-yield-server | ||
| channels: | ||
| - conda-forge | ||
| - defaults | ||
| dependencies: | ||
| - python=3.10 | ||
| - pip | ||
| - numpy | ||
| - pandas | ||
| - flake8 | ||
| - pytest |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| // Jest configuration for infrastructure tests. | ||
| // These tests verify repository structure and dependency versions after the PR | ||
| // that removed python-publish.yml, environment.yml, and updated package versions. | ||
| // No adapter-specific globalSetup/globalTeardown is needed here. | ||
| module.exports = { | ||
| testMatch: ['**/src/tests/infrastructure.test.js'], | ||
| globalSetup: undefined, | ||
| globalTeardown: undefined, | ||
| }; |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.