Skip to content

Commit

Permalink
Removed go test files and references to golang from README (#5854)
Browse files Browse the repository at this point in the history
* Removed go test files and references to golang from README

* Removed golang from README
  • Loading branch information
madduci authored and memsharded committed Oct 2, 2019
1 parent b30a3c1 commit 2310021
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 341 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -225,12 +225,12 @@ You can run the actual tests like this:
$ nosetests .
There are a couple of test attributes defined, as ``slow``, or ``golang`` that you can use
There are a couple of test attributes defined, as ``slow`` that you can use
to filter the tests, and do not execute them:

.. code-block:: bash
$ nosetests . -a !golang
$ nosetests . -a !slow
A few minutes later it should print ``OK``:

Expand Down Expand Up @@ -280,4 +280,4 @@ License

.. _`pip docs`: https://pip.pypa.io/en/stable/installing/

.. _`brew homepage`: http://brew.sh/
.. _`brew homepage`: http://brew.sh/
157 changes: 0 additions & 157 deletions conans/test/integration/go_complete_test.py

This file was deleted.

82 changes: 0 additions & 82 deletions conans/test/integration/go_diamond_test.py

This file was deleted.

94 changes: 0 additions & 94 deletions conans/test/utils/go_test_files.py

This file was deleted.

5 changes: 0 additions & 5 deletions conans/test/utils/test_files.py
Expand Up @@ -12,7 +12,6 @@
from conans.paths import PACKAGE_TGZ_NAME
from conans.test import CONAN_TEST_FOLDER
from conans.test.utils.cpp_test_files import cpp_hello_conan_files, cpp_hello_source_files
from conans.test.utils.go_test_files import go_hello_conan_files, go_hello_source_files
from conans.util.files import mkdir_tmp


Expand Down Expand Up @@ -84,8 +83,6 @@ def hello_source_files(number=0, deps=None, lang='cpp'):
"""
if lang == 'cpp':
return cpp_hello_source_files(number, deps)
elif lang == 'go':
return go_hello_source_files(number, deps)


def hello_conan_files(ref, number=0, deps=None, language=0, lang='cpp'):
Expand All @@ -100,8 +97,6 @@ def hello_conan_files(ref, number=0, deps=None, language=0, lang='cpp'):
The output of such a conans exe could be like: Hello 3, Hello 4, Hello7"""
if lang == 'cpp':
return cpp_hello_conan_files(ref, number, deps, language)
elif lang == 'go':
return go_hello_conan_files(ref, number, deps)


def tgz_with_contents(files):
Expand Down

0 comments on commit 2310021

Please sign in to comment.