Skip to content
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

Fix pylint scope #5895

Merged
merged 26 commits into from
Dec 18, 2023
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
14c4b0d
Allow optional input for 2-month treasury rates and add FederalReserv…
jmaslek Dec 12, 2023
21de73b
Add Money Measures models and commands
jmaslek Dec 12, 2023
91a5c38
Add Federal Reserve Money Measures test file
jmaslek Dec 12, 2023
df1c2f5
Cleanup
jmaslek Dec 12, 2023
b529434
Merge branch 'develop' into feature/federal-reserve
jmaslek Dec 12, 2023
934232f
Sneaky unformatted integration tests
jmaslek Dec 12, 2023
f4fec92
its a dawg life for me ...... ruff
jmaslek Dec 12, 2023
0d5425e
add the fed funds rate
jmaslek Dec 12, 2023
2dd2f0e
didnt mean to commmit this
jmaslek Dec 12, 2023
ebcf28f
black
jmaslek Dec 12, 2023
65d8a12
this is why we should pre commit kids
jmaslek Dec 12, 2023
74e447b
Merge branch 'develop' into feature/federal-reserve
deeleeramone Dec 13, 2023
982f9e3
change install name
jmaslek Dec 13, 2023
aa79254
add providers to int tests
jmaslek Dec 13, 2023
cb1c7ba
Merge remote-tracking branch 'upstream/feature/federal-reserve' into …
jmaslek Dec 13, 2023
fbdb8b8
review comments + commit static
jmaslek Dec 13, 2023
b6b8a08
replace nan with None
jmaslek Dec 14, 2023
94f1c22
fix float on None
jmaslek Dec 14, 2023
06120d5
Merge branch 'develop' into feature/federal-reserve
deeleeramone Dec 14, 2023
9e0536b
get rid of nans for nulls for json handling
jmaslek Dec 15, 2023
7e2ca89
change `_` to `-` in readme pip install.
deeleeramone Dec 15, 2023
79aa428
Update __init__.py docstring
deeleeramone Dec 15, 2023
16fd11b
Merge branch 'develop' into feature/federal-reserve
piiq Dec 15, 2023
ceac775
Debug pylint
piiq Dec 15, 2023
983295e
Adjust the fetch depth
piiq Dec 15, 2023
20fe4ab
Merge branch 'develop' into feature/fix-linters
piiq Dec 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # actions/checkout v3.0.2
with:
ref: ${{ github.head_ref }}
fetch-depth: 20

- name: Fetch base branch
run: git fetch --no-tags --depth=20 origin ${{ github.base_ref }}

- name: Setup Python 3.9
uses: actions/setup-python@v4
Expand All @@ -42,7 +48,9 @@ jobs:
run: |
# "Checking PR diff"
echo "terminal_files=$(git diff --name-only origin/${{ github.base_ref }}...${{ github.head_ref }} | grep 'openbb_terminal/.*\.py$' | xargs)" >> $GITHUB_ENV
echo $terminal_files
echo "platform_files=$(git diff --name-only origin/${{ github.base_ref }}...${{ github.head_ref }} | grep 'openbb_platform/.*\.py$' | grep -v 'openbb_platform/openbb/package' | grep -v 'integration' | grep -v 'tests' | xargs)" >> $GITHUB_ENV
echo $platform_files

- uses: actions/cache@v3
with:
Expand Down
Loading