Skip to content

Commit

Permalink
Forcing to show current directory of
Browse files Browse the repository at this point in the history
  • Loading branch information
pariterre committed Feb 7, 2024
1 parent 4bb5ae2 commit 6c69cf1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run_frontend_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
- run: flutter frontend/test
- run: |
cd frontend
flutter test
19 changes: 15 additions & 4 deletions server/tests/test_common_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,28 @@
import os
import pickle

import numpy as np

from lokomat_fes import Data
from lokomat_fes.nidaq.data import NiDaqData
from lokomat_fes.rehastim.data import RehastimData, Channel
def test_tata():
print("coucou")
print(os.getcwd())
# show python_path environment variable
print(os.environ["PYTHONPATH"])

print("coucou")
raise Exception(f"{os.getcwd()}")


# Print current working directory to the console
print("coucou")
print(os.getcwd())
print("coucou")

import numpy as np

from lokomat_fes import Data
from lokomat_fes.nidaq.data import NiDaqData
from lokomat_fes.rehastim.data import RehastimData, Channel


def test_data_creation():
data = Data()
Expand Down

0 comments on commit 6c69cf1

Please sign in to comment.