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
Followed the contribution guide and faced an error when installing the tests.
Specs
Python 3.9.12
Django 4.2.1
zsh 5.8.1
Steps to reproduce
Fork django/channels repo
Clone repo into local machine with git clone [email protected]:your-username/channels.git
Activate virtual environment
Move into channels directory with cd channels
Install tests with python -m pip install -e .[tests]
Error zsh: no matches found: .[tests]
After some research, I identified that the [] might have been interpreted by zsh as a wildcard to match files similar to tests. After wrapping it around quotations (i.e '[tests]'), I managed to succeed with installations.
Not sure if it's just an isolated issue — just thought to raise it up in case it's worth mentioning.
The text was updated successfully, but these errors were encountered:
Followed the contribution guide and faced an error when installing the tests.
Specs
Steps to reproduce
django/channels
repogit clone [email protected]:your-username/channels.git
cd channels
python -m pip install -e .[tests]
Error
zsh: no matches found: .[tests]
After some research, I identified that the
[]
might have been interpreted by zsh as a wildcard to match files similar totests
. After wrapping it around quotations (i.e'[tests]'
), I managed to succeed with installations.Not sure if it's just an isolated issue — just thought to raise it up in case it's worth mentioning.
The text was updated successfully, but these errors were encountered: