Skip to content

Commit

Permalink
Small fix (#2240)
Browse files Browse the repository at this point in the history
  • Loading branch information
piiq authored Aug 3, 2022
1 parent 950d53c commit 507cbfa
Show file tree
Hide file tree
Showing 896 changed files with 14,918 additions and 2,836,344 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Run tests (Bash)
shell: bash -l {0}
run: pytest tests/ -m "not bots"
run: pytest tests/

- name: Start Terminal and exit
shell: bash -l {0}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- run: shopt -s globstar && pyupgrade --py36-plus **/*.py
- run: safety check
- run: |
pylint terminal.py openbb_terminal bots tests
pylint terminal.py openbb_terminal tests
test:
name: Base Tests - Ubuntu-latest - Python 3.9
runs-on: ubuntu-latest
Expand Down Expand Up @@ -69,17 +69,17 @@ jobs:

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root -E bots
run: poetry install --no-interaction --no-root

- name: Install Package
run: poetry install --no-interaction -E bots
run: poetry install --no-interaction

- name: Run tests
env:
MPLBACKEND: Agg
run: |
source $VENV
pytest tests/ -m "not bots"
pytest tests/
- name: Start Terminal and exit
run: |
Expand Down Expand Up @@ -135,10 +135,10 @@ jobs:

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root -E bots
run: poetry install --no-interaction --no-root

- name: Install Package
run: poetry install --no-interaction -E bots
run: poetry install --no-interaction

- name: List installed packages
shell: bash -l {0}
Expand All @@ -151,7 +151,7 @@ jobs:
MPLBACKEND: Agg
run: |
source $VENV
pytest tests/ -m "not bots"
pytest tests/
- name: Start Terminal and exit
run: |
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
env:
MPLBACKEND: Agg
shell: bash -l {0}
run: pytest tests/ -m "not bots and not linux"
run: pytest tests/ -m "not linux"

- name: Start Terminal and exit
shell: bash -l {0}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
env:
MPLBACKEND: Agg
shell: bash -l {0}
run: pytest tests/ -m "not bots and not linux"
run: pytest tests/ -m "not linux"

- name: Start Terminal and exit
shell: bash -l {0}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ openbb_terminal/portfolio/portfolios/*
**/.ipynb_checkpoints
*.swp
*.http
bots/interactive/*.html
.coverage.*
!openbb_terminal/custom_reports/*/.ipynb

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ repos:
hooks:
- id: pylint
name: pylint
entry: pylint bots openbb_terminal terminal.py tests
entry: pylint openbb_terminal terminal.py tests
language: system
types: [python]
- repo: https://github.com/Yelp/detect-secrets
Expand Down
1 change: 0 additions & 1 deletion Procfile

This file was deleted.

Loading

0 comments on commit 507cbfa

Please sign in to comment.