Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
PLAT-2945-Demo Linting Checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Luqman Bello authored and Luqman Bello committed Dec 27, 2022
1 parent 8fc8891 commit 3daa4fe
Show file tree
Hide file tree
Showing 6 changed files with 98 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[coverage:run]
omit =
env/*
tests/*
source = .
12 changes: 12 additions & 0 deletions .dockerignore
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/
Empty file added .env
Empty file.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* linguist-vendored
*.py linguist-vendored=false
75 changes: 75 additions & 0 deletions .gitignore copy
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
4 changes: 4 additions & 0 deletions pytest.ini
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

0 comments on commit 3daa4fe

Please sign in to comment.