aboutsummaryrefslogtreecommitdiff
path: root/cbc/tests/data
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-17 13:57:23 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-17 13:57:23 -0400
commit237d2159faac7dadb0232e35f7016588db568808 (patch)
tree19482c130efee570b7e985121dbf372b6965db50 /cbc/tests/data
parent16a6d3d6c9495d3a67d74835f1d25329418ba832 (diff)
downloadcbc-1.0.tar.gz
Restructuring and setuptools integration1.0
Diffstat (limited to 'cbc/tests/data')
-rw-r--r--cbc/tests/data/test.ini47
1 files changed, 47 insertions, 0 deletions
diff --git a/cbc/tests/data/test.ini b/cbc/tests/data/test.ini
new file mode 100644
index 0000000..ec67f6e
--- /dev/null
+++ b/cbc/tests/data/test.ini
@@ -0,0 +1,47 @@
+[cbc_cgi]
+local_server: true
+local_port: 8888
+local_sources: /srv/conda/sources
+protocol: http
+url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port}
+
+[package]
+name: test
+version: 1.0.0
+
+[about]
+home: http://example.com/${package:name}
+license: GPL
+summary: ${package:name} is a test package
+readme: README.md
+
+[source]
+fn: ${package:name}-${package:version}.tar.gz
+url: ${cbc_cgi:url}/${fn}
+
+[build]
+number: 1
+
+[requirements]
+build:
+ python
+ setuptools
+
+run:
+ python
+
+
+[cbc_build]
+prefix: /usr/local
+win_prefix: c:\anaconda3\
+
+
+linux:
+ python setup.py install || exit 1
+
+darwin:
+ python setup.py install || exit 1
+
+windows:
+ python setup.py install
+ if errorlevel 1 exit 1 \ No newline at end of file