aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-09-07 21:39:41 +0200
committerRicardo Wurmus <rekado@elephly.net>2023-09-07 21:39:41 +0200
commit6d60d7ccba5a8e06c17d55a1772fa7f4529b5eff (patch)
tree8bcf6e171df2525fc888fe38764b195ad0f2405d /gnu/installer.scm
parent451ba2e5bb523c18a2ccc941df47b598c48ef57e (diff)
downloadguix-6d60d7ccba5a8e06c17d55a1772fa7f4529b5eff.tar.gz
guix-6d60d7ccba5a8e06c17d55a1772fa7f4529b5eff.zip
gnu: Add fasttext.
* gnu/packages/machine-learning.scm (fasttext): New variable.
Diffstat (limited to 'gnu/installer.scm')
0 files changed, 0 insertions, 0 deletions
and apply it to the current test runner when running the test file. * doc/guix.texi (Running the Test Suite): Document the new options. Maxim Cournoyer 2021-01-31build: test-driver.scm: Enable colored test results by default....The Automake parallel test harness does its own smart detection of the terminal color capability and always provides the --color-tests argument to the driver. This change defaults the --color-tests argument to true when the test driver is run on its own (not via Automake). * build-aux/test-driver.scm (main): Set the default value of the --color-tests argument to true when it's not explicitly provided. Maxim Cournoyer 2021-01-31build: test-driver.scm: Make output redirection optional....This makes it easier (and less surprising) for users to experiment with the custom Scheme test driver directly. The behavior is unchanged from Automake's point of view. * build-aux/test-driver.scm (main): Make the --log-file and --trs-file arguments optional and update doc. Only open, redirect and close a port to a log file when the --log-file option is provided. Only open and close a port to a trs file when the --trs-file option is provided. (test-runner-gnu): Set OUT-PORT parameter default value to the current output port. Set the TRS-PORT parameter default value to a void port. Update doc. Maxim Cournoyer