public code v1
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
@echo off
|
||||
REM experiment.bat
|
||||
|
||||
cd notebooks\sandbox
|
||||
|
||||
echo Running experiment script...
|
||||
python sliding-window_emf.py
|
||||
echo Experiment script completed.
|
||||
@@ -0,0 +1,6 @@
|
||||
@echo off
|
||||
REM init.bat
|
||||
|
||||
call scripts\install_dependencies.bat
|
||||
call scripts\run_test.bat
|
||||
call scripts\experiments.bat
|
||||
@@ -0,0 +1,11 @@
|
||||
@echo off
|
||||
REM install-dependencies.bat
|
||||
|
||||
REM Activate conda environment
|
||||
CALL "%USERPROFILE%\anaconda3\Scripts\activate.bat" pygrex-exp-grs
|
||||
|
||||
REM Install editable package
|
||||
pip install -e .
|
||||
|
||||
REM Verify if pygrex is importable
|
||||
python -c "import pygrex; print('pygrex imported successfully')"
|
||||
@@ -0,0 +1,4 @@
|
||||
@echo off
|
||||
coverage run --source=pygrex --branch -m pytest test -v
|
||||
coverage report -m
|
||||
coverage html
|
||||
Reference in New Issue
Block a user