
Make it easier to use Codespace to develop rspec-tools by reusing the Dockerfile for the CI.
8 lines
117 B
Bash
Executable File
8 lines
117 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd rspec-tools
|
|
pipenv install --dev
|
|
pipenv run pip install pytest pytest-cov
|