Skip to content

Commit

Permalink
Update tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Oct 13, 2023
1 parent c9b2f1e commit bb54e06
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/lint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ jobs:
with:
persist-credentials: false

- name: Checkout order-data 📊
uses: actions/checkout@v4
with:
name: cms-cat/order-data
persist-credentials: false

- name: Setup Python ${{ matrix.python-version }} 🐍
uses: actions/setup-python@v4
with:
Expand All @@ -79,7 +85,11 @@ jobs:
pip install .[dev]
- name: Test 🎢
run: ./tests/test.sh
run: |
ls -al
export ORDER_DATA_LOCATION="${PWD}/order-data"
export ORDER_COLORS="False"
./tests/test.sh
coverage:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion order/magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ def register_magics(*args, **kwargs) -> None:
try:
ipy = get_ipython()
except NameError:
print("no running notebook kernel found")
# print("no running notebook kernel found")
pass

# create the magics
if ipy:
Expand Down

0 comments on commit bb54e06

Please sign in to comment.