This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Description
I am trying to run the test.sh script on Windows 10 after installation. I noticed that virtualenv on Windows 10 downloads the activate/deactivate files into the "Scripts" folder (vs bin on Linux). After changing the test.sh file to:
source _virtualenv/Scripts/activate
I am able to launch the virtualenv for testing purposes as intended. However, it does not seem that the PYTHONPATH line is working on my system. I receive the error (after doing the above and running test.sh):
File "C:\Users\XYZ\workspace\market-maker-keeper\tests\conftest.py", line 20, in <module>
from pymaker.deployment import Deployment
ModuleNotFoundError: No module named 'pymaker'
This leads me to believe that there is an issue with test.sh changing the pythonpath for the tests. Any guidance on how I can get my tests performed on Windows 10 would be greatly appreciated. Love the project - Thanks!