You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just cloned the repo on my mac and created a virtual env, sourced it and ran make check.test.
╭─pyReaderWriterLock on master [?] via 🐍 v3.10.13 (.venv) ❯
└─> make check.test
export PYTHONPATH=.; python3 "-m" "unittest" "discover" "-s" "tests/"
date: illegal option -- -
usage: date [-jnRu] [-I[date|hours|minutes|seconds]] [-f input_fmt]
[-r filename|seconds] [-v[+|-]val[y|m|w|d|H|M|S]]
[[[[mm]dd]HH]MM[[cc]yy][.SS] | new_date] [+output_fmt]
EE
======================================================================
ERROR: test_rwlock (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: test_rwlock
Traceback (most recent call last):
File "/Users/I530566/.pyenv/versions/3.10.13/lib/python3.10/unittest/loader.py", line 436, in _find_test_path
module = self._get_module_from_name(name)
File "/Users/I530566/.pyenv/versions/3.10.13/lib/python3.10/unittest/loader.py", line 377, in _get_module_from_name
__import__(name)
File "/Users/I530566/tmp/pyReaderWriterLock/tests/test_rwlock.py", line 15, in <module>
from readerwriterlock import rwlock
File "/Users/I530566/tmp/pyReaderWriterLock/readerwriterlock/rwlock.py", line 15, in <module>
from typing_extensions import Protocol
ModuleNotFoundError: No module named 'typing_extensions'
======================================================================
ERROR: test_rwlock_async (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: test_rwlock_async
Traceback (most recent call last):
File "/Users/I530566/.pyenv/versions/3.10.13/lib/python3.10/unittest/loader.py", line 436, in _find_test_path
module = self._get_module_from_name(name)
File "/Users/I530566/.pyenv/versions/3.10.13/lib/python3.10/unittest/loader.py", line 377, in _get_module_from_name
__import__(name)
File "/Users/I530566/tmp/pyReaderWriterLock/tests/test_rwlock_async.py", line 15, in <module>
from readerwriterlock import rwlock_async
File "/Users/I530566/tmp/pyReaderWriterLock/readerwriterlock/rwlock_async.py", line 16, in <module>
from typing_extensions import Protocol
ModuleNotFoundError: No module named 'typing_extensions'
----------------------------------------------------------------------
Ran 2 tests in 0.000s
FAILED (errors=2)
make: *** [check.test] Error 1
The text was updated successfully, but these errors were encountered:
I just cloned the repo on my mac and created a virtual env, sourced it and ran make check.test.
The text was updated successfully, but these errors were encountered: