Socket
Book a DemoInstallSign in
Socket

slither

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slither

Quick testing for short scripts

0.2.2
latest
npmnpm
Version published
Weekly downloads
14
-98.05%
Maintainers
1
Weekly downloads
 
Created
Source

🐍 slither

slither is a utility for testing simple IO-based programs. It's perfect for algorithmic competitions like Codeforces or TopCoder, or for testing anything else where the only effects you care about are input and output.

Installation

$ npm install -g slither

Usage

# Wherever you want to use slither...
$ slither init

# Add a new testset
$ slither addset

# Add some tests to your testset
$ slither addtest [testset-name]

# Run the tests
$ slither test [testset-name]

# Helpful options:
#   -t, --tests [tests]   only run the specified tests
#   -i, --inspect         open the test inspector after testing


# Other commands: edittest, cattest

Templates

Custom set templates can be used by creating a JSON file in ~/.slither_templates. Default templates:

{
	"java": {
		"limits": {
			"timeout": 4000,
			"memory": 64
		},
		"scripts": {
			"compile": "javac {name}.java",
			"run": "java -Xmx512M -Xss64M -DONLINE_JUDGE=false -Duser.language=en -Duser.region=US -Duser.variant=US {name}",
			"cleanup": "ls | grep -e '{name}.*\\.class' | xargs rm"
		}
	},
	"python": {
		"limits": {
			"timeout": 8000,
			"memory": 64
		},
		"scripts": {
			"run": "python {name}.py"
		}
	},
	"js": {
		"limits": {
			"timeout": 2000,
			"memory": 64
		},
		"scripts": {
			"run": "node {name}.js"
		}
	}
}

Keywords

test

FAQs

Package last updated on 18 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.