Skip to content

Commit

Permalink
Merge 66f7431 into sapling-pr-archive-shish
Browse files Browse the repository at this point in the history
  • Loading branch information
shish committed Mar 26, 2024
2 parents 284a38b + 66f7431 commit 628af4d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
19 changes: 19 additions & 0 deletions .devcontainer/devcontainer.json
@@ -0,0 +1,19 @@
{
"name": "TestSlide",
"build": {
"context": "..",
"dockerfile": "../Dockerfile"
},

"workspaceMount": "source=${localWorkspaceFolder},target=/root/src/TestSlide,type=bind",
"workspaceFolder": "/root/src/TestSlide",
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"ms-vscode.makefile-tools",
"ms-python.python"
]
}
}
}
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -18,8 +18,6 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install virtualenv
run: pip install virtualenv
- name: Run Tests
run: TESTSLIDE_FORMAT=progress UNITTEST_VERBOSE=0 make ci V=1
- name: Coveralls
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -42,7 +42,7 @@ all: tests coverage_report docs sdist
##
venv: requirements-dev.txt requirements.txt
@printf "${TERM_BRIGHT}CREATE VIRTUALENV (${CURDIR}/venv)\n${TERM_NONE}"
${Q} python3 -m virtualenv venv
${Q} python3 -m venv venv
@printf "${TERM_BRIGHT}INSTALL BUILD DEPS\n${TERM_NONE}"
${Q} ${CURDIR}/venv/bin/pip install -r requirements-dev.txt
@printf "${TERM_BRIGHT}INSTALL DEPS\n${TERM_NONE}"
Expand Down

0 comments on commit 628af4d

Please sign in to comment.