From 80b0ba4a8d41adee65adf73bebed4bbef3c065c3 Mon Sep 17 00:00:00 2001 From: Alassane Samba Date: Wed, 29 Mar 2017 16:19:15 +0200 Subject: init TOM: machine learning on test results Change-Id: Ic66214e53d694bef9d4fac08a2ededa1f3ae4f82 Signed-off-by: Alassane Samba --- contrib/TOM/tomRun.R | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 contrib/TOM/tomRun.R (limited to 'contrib/TOM/tomRun.R') diff --git a/contrib/TOM/tomRun.R b/contrib/TOM/tomRun.R new file mode 100644 index 00000000..ecfe9216 --- /dev/null +++ b/contrib/TOM/tomRun.R @@ -0,0 +1,20 @@ +# ---------------------------------------------------------------------- +# title: TOM runner +# description: Machine Learning-Based Test Results Analysis +# author: Alassane Samba (alassane.samba@orange.com) +# Copyright (c) 2017 Orange +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +# ---------------------------------------------------------------------- +# dependencies +packages <- c("plumber") +if (length(setdiff(packages, rownames(installed.packages()))) > 0) { + install.packages(setdiff(packages, rownames(installed.packages())),dependencies = T, repos = "https://cloud.r-project.org/") +} +try(library(plumber), silent=TRUE) +library(plumber) +# run TOM +r<-plumb("R/tom.R") +r$run(port=8000) \ No newline at end of file -- cgit 1.2.3-korg