-
Notifications
You must be signed in to change notification settings - Fork 145
Stretch fixes #366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stretch fixes #366
Conversation
|
Resolves #339 |
| Example: | ||
|
|
||
| ``` | ||
| $ git clone --recursive https://github.com/rhempel/ev3dev-lang-python.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can run git submodule init to do it post-clone.
| cp -P --copy-contents -r /sys/class/${node}/* ./${node}/ | ||
| ``` | ||
| $ node=lego-sensor/sensor0 | ||
| $ mkdir -p ./${node} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be at the bottom, because it's rarely needed. The important command is the one for running the tests.
| import fnmatch | ||
| import numbers | ||
| import array | ||
| import logging |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder how much does this add to startup time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No noticable difference as far as I can tell
tests/README.md
Outdated
|
|
||
| If you have already cloned the ev3dev-lang-python repo but do not have the | ||
| `fake-sys` directory use `git submodule init` to get it. If you have not | ||
| already closed the ev3dev-lang-python repo you can use the `--recursive` option |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
closed -> cloned
No description provided.