mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
c37eade954
- Make `Vector.fill` use the `Vector.new` method. - Tuning of some Range methods to try and get better performance. | Test | Old | Current | Change | | --- | --- | --- | --- | | New Vector | 77.5 | 72.5 | 94% | | Fill Constant | 71.8 | 42.1 | 59% | | Fill Random | 156.5 | 124.2 | 79% | | Append Single | 13.3 | 3.9 | 29% | | Append Large | 13.0 | 4.9 | 38% | | Sum | 146.4 | 122.3 | 84% | | Drop First 20 and Sum | 148.0 | 132.7 | 90% | | Drop Last 20 and Sum | 145.3 | 138.0 | 95% | | Filter | 79.4 | 68.5 | 86% | | Filter With Index | 152.9 | 158.5 | 104% | | Map & Filter | 438.0 | 440.7 | 101% | | Partition | 256.4 | 296.7 | 116% | | Partition With Index | 410.0 | 392.0 | 96% | | Each | 117.4 | 103.8 | 88% | |
||
---|---|---|
.. | ||
data | ||
src | ||
package.yaml | ||
README.md |
This is a set of tests for the Base
library for Enso.
The run test suite for the HTTP component requires an active httbin
server on
the localhost. If it is present, the port it listens to should be provided by
setting the ENSO_HTTP_TEST_HTTPBIN_URL
environment variable to a value like
http://localhost:8080
. The URL may contain a trailing slash.
tools/simple-httpbin
provides a simple implementation of httpbin
server. See
its README for instructions on how to run it.