This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git

commit 6f1cf377bd0655dc36dea1a066e2a13f90493777
Author: Rodric Rabbah <rod...@gmail.com>
AuthorDate: Tue Dec 17 22:45:57 2019 -0500

    Remove another unused test artifact.
---
 tests/dat/actions/build.sh                         |  1 -
 tests/dat/actions/python_virtualenv/__main__.py    | 32 ----------------------
 tests/dat/actions/python_virtualenv/build.sh       | 21 --------------
 .../dat/actions/python_virtualenv/requirements.txt | 18 ------------
 4 files changed, 72 deletions(-)

diff --git a/tests/dat/actions/build.sh b/tests/dat/actions/build.sh
index b42dc33..a80df5f 100755
--- a/tests/dat/actions/build.sh
+++ b/tests/dat/actions/build.sh
@@ -37,6 +37,5 @@ fi
 (cd blackbox && zip ../blackbox.zip exec)
 (cd python-zip && zip ../python.zip -r .)
 (cd zippedaction && npm install && zip ../zippedaction.zip -r .)
-(cd python_virtualenv && ./build.sh && zip ../python2_virtualenv.zip -r .)
 
 touch .built
diff --git a/tests/dat/actions/python_virtualenv/__main__.py 
b/tests/dat/actions/python_virtualenv/__main__.py
deleted file mode 100755
index e075550..0000000
--- a/tests/dat/actions/python_virtualenv/__main__.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-"""Python Hello virtualenv test.
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-"""
-
-import netifaces
-
-def main(dict):
-    networkif = netifaces.interfaces()
-    print ("Networkinterfaces: \n %s" %networkif )
-    networkinfo = netifaces.ifaddresses('eth0')[netifaces.AF_INET]
-    print ("Networkinfo eth0: \n %s" %networkinfo )
-    return {"Networkinfo: ": networkinfo}
-
-def naim(dict):
-    return main(dict)
diff --git a/tests/dat/actions/python_virtualenv/build.sh 
b/tests/dat/actions/python_virtualenv/build.sh
deleted file mode 100755
index 6e4b8fe..0000000
--- a/tests/dat/actions/python_virtualenv/build.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-virtualenv virtualenv
-source virtualenv/bin/activate
-pip install -r requirements.txt
diff --git a/tests/dat/actions/python_virtualenv/requirements.txt 
b/tests/dat/actions/python_virtualenv/requirements.txt
deleted file mode 100644
index 65e1d5f..0000000
--- a/tests/dat/actions/python_virtualenv/requirements.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-netifaces==0.10.9

Reply via email to