This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luqman Bello
authored and
Luqman Bello
committed
Dec 27, 2022
1 parent
8fc8891
commit 3daa4fe
Showing
6 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,5 @@ | ||
[coverage:run] | ||
omit = | ||
env/* | ||
tests/* | ||
source = . |
This file contains 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,12 @@ | ||
.git | ||
.* | ||
.dockerignore | ||
.gitignore | ||
docker-compose.yaml | ||
Dockerfile* | ||
.vscode | ||
.idea | ||
__pycache__ | ||
.python-version | ||
jupyterlab/*/node_modules | ||
logs/ |
This file contains 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,2 @@ | ||
* linguist-vendored | ||
*.py linguist-vendored=false |
This file contains 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,75 @@ | ||
__pycache__/ | ||
logs/ | ||
*.pyc | ||
.DS_Store | ||
*.env | ||
.venv | ||
venv | ||
.vscode | ||
*.ipynb | ||
env/ | ||
venv/ | ||
!notebooks/jupyter/.gitkeep | ||
.python-version | ||
.mypy_cache | ||
iframe_figures/ | ||
exports/* | ||
.idea | ||
.coverage | ||
.scannerwork | ||
htmlcov | ||
openbb_terminal/config_plot.py | ||
openbb_terminal/config_terminal.py | ||
openbb_terminal/feature_flags.py | ||
openbb_terminal/reports/stored/* | ||
!openbb_terminal/reports/stored/.gitkeep | ||
!openbb_terminal/dashboards/voila/*.ipynb | ||
!openbb_terminal/reports/*.ipynb | ||
openbb_terminal/portfolio/portfolios/* | ||
**/.ipynb_checkpoints | ||
*.swp | ||
*.http | ||
.coverage.* | ||
!openbb_terminal/reports/templates/*.ipynb | ||
*_tests.csv | ||
integration_test_output/ | ||
integration_test_summary/ | ||
openbb_terminal/reports/templates/*.html | ||
website/functions | ||
*_sdk_audit.csv | ||
website/terminaltest | ||
!build/docker/compose.env | ||
|
||
# pyinstaller artifacts | ||
*.pyo | ||
dist/* | ||
build/terminal | ||
build/nsis/app | ||
DMG/* | ||
*.dmg | ||
|
||
# Jupyter Lab Extension build files | ||
jupyterlab/**/build | ||
jupyterlab/*/*.bundle.* | ||
jupyterlab/*/lib/ | ||
jupyterlab/*/*/labextension/ | ||
jupyterlab/*/node_modules/ | ||
jupyterlab/*/*/node_modules/ | ||
jupyterlab/*/*.egg-info/ | ||
jupyterlab/*/.ipynb_checkpoints | ||
jupyterlab/*/*.tsbuildinfo | ||
jupyterlab/*/ui-tests/test-results/ | ||
jupyterlab/*/ui-tests/tests/*.ts-snapshots/ | ||
|
||
# User stylesheets | ||
styles/user | ||
|
||
# the file containing the API keys for the web version | ||
openbb_terminal_web/setenv | ||
|
||
# dart models | ||
darts_logs/ | ||
|
||
# User data | ||
custom_imports/*.csv | ||
custom_imports/*/*.csv |
This file contains 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,4 @@ | ||
[pytest] | ||
addopts = -p no:warnings | ||
markers = | ||
linux: tests that are not stable on Windows |