Skip to content

Commit 70607a4

Browse files
authored
Merge pull request #43 from vsoch/add/instances
Refactoring to add instances
2 parents 96659d7 + 7098d1a commit 70607a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1921
-1030
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ python:
88
- "2.7"
99
- "3.5"
1010

11+
services:
12+
- docker
13+
1114
matrix:
1215
allow_failures:
1316
- python: "2.6"

.travis/script

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
22
sudo apt-get install -y squashfs-tools
3-
python -m unittest discover -s $TRAVIS_BUILD_DIR/spython/tests/ -p '[t|T]est*.py'
4-
3+
cd $TRAVIS_BUILD_DIR/spython
4+
python -m unittest tests.test_client
5+
python -m unittest tests.test_utils

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The client here will eventually be released as "spython" (and eventually to
1717
singularity on pypi), and the versions here will coincide with these releases.
1818

1919
## [master](https://github.com/singularityhub/singularity-cli/tree/master)
20+
- adding support and documentation for container instances (0.0.38)
2021
- fixing bug with recipe Dockerfile conversion (0.0.37)
2122
- typo in pypi PACKAGE_URL (0.0.36)
2223
- respecting Client "quiet" attribute in run_command (0.0.34/0.0.35)

docs/_data/toc.yml

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,12 @@
77
- title: "Python API"
88
url: "/singularity-cli/commands"
99
slug: commands
10-
sections:
11-
- title: Shell
12-
slug: shell
13-
- title: Build
14-
slug: build
15-
- title: Pull
16-
slug: pull
17-
- title: Apps
18-
slug: apps
19-
- title: Inspect
20-
slug: inspect
21-
- title: Run
22-
slug: run
23-
- title: Execute
24-
slug: execute
25-
- title: Help
26-
slug: help
10+
- title: "Image Commands"
11+
url: "/singularity-cli/commands-images"
12+
slug: images
13+
- title: "Instance Commands"
14+
url: "/singularity-cli/commands-instances"
15+
slug: instances
2716
- title: "Python API Docstring"
2817
url: "https://singularityhub.github.io/singularity-cli/api/source/spython.main.html"
2918
slug: docstring

0 commit comments

Comments
 (0)