summaryrefslogtreecommitdiffstatshomepage
path: root/ports/unix/variants/coverage/manifest.py
Commit message (Collapse)AuthorAge
* unix/variants: Prefer unix-ffi packages when loading the manifest.Damien George2024-02-08
| | | | Signed-off-by: Damien George <damien@micropython.org>
* extmod/modtls: Move the native ssl module to tls.Felix Dörre2024-02-07
| | | | | | | | | | | | | The current `ssl` module has quite a few differences to the CPython implementation. This change moves the MicroPython variant to a new `tls` module and provides a wrapper module for `ssl` (in micropython-lib). Users who only rely on implemented comparible behavior can continue to use `ssl`, while users that rely on non-compatible behavior should switch to `tls`. Then we can make the facade in `ssl` more strictly adhere to CPython. Signed-off-by: Felix Dörre <felix@dogcraft.de>
* unix/variants/coverage: Add test for manifest freeze_mpy().Jim Mussared2022-09-19
| | | | | | | | | | | | This uses the frozentest.mpy that is also used by ports/minimal. Also fixes two bugs that these new tests picked up: - File extension matching in manifestfile.py. - Handling of freeze_mpy results in makemanifest. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* unix: Make manifest selection match other ports.Jim Mussared2020-07-01
Changes are: - The default manifest.py is moved to the variants directory (it's in "boards" in other ports). - The coverage variant now uses a custom manifest in its variant directory to add frzmpy/frzstr. - The frzmpy/frzstr tests are moved to variants/coverage/.