File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed
Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1+ parse_git_branch() {
2+ git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
3+ }
4+ export PS1="\[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
5+ alias ll='ls -lah'
6+ source /usr/share/bash-completion/completions/git
7+
8+ #!/bin/bash
9+ RESTORE='\033[0m'
10+ RED='\033[00;31m'
11+ GREEN='\033[00;32m'
12+ YELLOW='\e[0;33m'
13+
14+ function quickstart {
15+ echo -e ""
16+ echo -e "${RED}run tests${RESTORE}"
17+ echo -e "${YELLOW}python -m unittest${RESTORE}"
18+ echo -e ""
19+ }
Original file line number Diff line number Diff line change 22 "python.testing.unittestArgs" : [
33 " -v" ,
44 " -s" ,
5- " ." ,
5+ " ./tests " ,
66 " -p" ,
77 " test_*.py"
88 ],
9- "python.testing.pytestEnabled" : true ,
10- "python.testing.unittestEnabled" : false ,
9+ "python.testing.unittestEnabled" : true ,
1110 "python.testing.pytestArgs" : [
1211 " ."
1312 ]
Original file line number Diff line number Diff line change 11FROM python:3.8
22RUN apt-get update && apt-get install -y make libgl1-mesa-glx && rm -rf /var/lib/apt/lists/*
33WORKDIR /roboflow-python
4+ COPY .devcontainer/bashrc_ext /root/bashrc_ext
5+ RUN echo "source /root/bashrc_ext" >> ~/.bashrc
46COPY . .
57RUN pip install -e ".[dev]"
You can’t perform that action at this time.
0 commit comments