FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
stacki/test-framework/Makefile at develop · Teradata/stacki · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Teradata
/
stacki
Public
Notifications
You must be signed in to change notification settings
Fork
71
Star
236
Code
Issues
42
Pull requests
15
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
stacki
/
test-framework
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (13 loc) · 430 Bytes
Breadcrumbs
stacki
/
test-framework
/
Makefile
Copy path
File metadata and controls
17 lines (13 loc) · 430 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SHELL
= /bin/bash
.DEFAULT_GOAL
= environment
.PHONY
= environment clean
bin/pip
:
python3 -m venv venv
ln -s venv/bin bin
environment
: bin/pip
source
./bin/activate
&&
pip install -r requirements.txt
clean
:
rm -rf bin venv .cache .vagrant test-suites/
*
/.cache
find
.
-name
'
*.pyc
'
-delete
find
.
-name
'
__pycache__
'
-type d -print0
|
xargs -0 rm -rf --
find
.
-name
'
.pytest_cache
'
-type d -print0
|
xargs -0 rm -rf --
Back
|
FazBrowse Home
|
New Git URL