Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pytest | 9,935 | 65,292 | 18,299 | 2 days ago | 155 | April 23, 2022 | 853 | mit | Python | |
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing | ||||||||||
Artillery | 6,309 | 171 | 60 | a day ago | 124 | August 17, 2022 | 400 | mpl-2.0 | JavaScript | |
🌩 Cloud-scale load testing. Fully serverless, test any stack, test at any scale. | ||||||||||
Bash Oo Framework | 5,286 | a year ago | 39 | mit | Shell | |||||
Bash Infinity is a modern standard library / framework / boilerplate for Bash | ||||||||||
Qualitymatters | 1,774 | a year ago | 20 | apache-2.0 | Java | |||||
Android Development Culture | ||||||||||
Galen | 1,389 | 56 | 9 | 2 years ago | 31 | March 10, 2019 | 162 | apache-2.0 | Java | |
Layout and functional testing framework for websites | ||||||||||
Grin | 953 | 6 months ago | 29 | Haskell | ||||||
GRIN is a compiler back-end for lazy and strict functional languages with whole program optimization support. | ||||||||||
Fastcore | 823 | 167 | 19 days ago | 117 | June 17, 2022 | 22 | apache-2.0 | Jupyter Notebook | ||
Python supercharged for the fastai library | ||||||||||
Xod | 728 | 1 | 2 | a year ago | 12 | February 01, 2021 | 94 | agpl-3.0 | JavaScript | |
XOD IDE | ||||||||||
Liipfunctionaltestbundle | 630 | 723 | 100 | 9 days ago | 73 | June 21, 2022 | 43 | mit | PHP | |
Some helper classes for writing functional tests in Symfony | ||||||||||
Wp Browser | 534 | 172 | 82 | 7 days ago | 302 | April 28, 2022 | 27 | mit | PHP | |
The easy and reliable way to test WordPress with Codeception. 10 years of proven success. |
Python is a powerful, dynamic language. Rather than bake everything into
the language, it lets the programmer customize it to make it work for
them. fastcore
uses this flexibility to add to Python features
inspired by other languages we’ve loved, like multiple dispatch from
Julia, mixins from Ruby, and currying, binding, and more from Haskell.
It also adds some “missing features” and clean up some rough edges in
the Python standard library, such as simplifying parallel processing,
and bringing ideas from NumPy over to Python’s list
type.
To install fastcore run: conda install fastcore -c fastai
(if you use
Anaconda, which we recommend) or pip install fastcore
. For an
editable
install,
clone this repo and run: pip install -e ".[dev]"
. fastcore is tested
to work on Ubuntu, macOS and Windows (versions tested are those show
with the -latest
suffix
here.
fastcore
contains many features, including:
fastcore.test
: Simple testing functionsfastcore.foundation
: Mixins, delegation, composition, and morefastcore.xtras
: Utility functions to help with functional-style
programming, parallel processing, and morefastcore.dispatch
: Multiple dispatch methodsfastcore.transform
: Pipelines of composed partially reversible
transformationsTo get started, we recommend you read through the fastcore tour.
After you clone this repository, please run nbdev_install_hooks
in
your terminal. This sets up git hooks, which clean up the notebooks to
remove the extraneous stuff stored in the notebooks (e.g. which cells
you ran) which causes unnecessary merge conflicts.
To run the tests in parallel, launch nbdev_test
.
Before submitting a PR, check that the local library and notebooks match.
nbdev_prepare
.nbdev_update
.