-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
217 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Makefile | ||
|
||
SHELL = /usr/bin/bash | ||
|
||
.PHONY:test | ||
test: | ||
python -m unittest | ||
|
||
clean: | ||
find . -type f -name "*.pyc" -exec rm {} \; | ||
find . -type f -name "*.swp" -exec rm {} \; | ||
|
||
all: clean test | ||
coverage run -m unittest | ||
coverage report -m | ||
python -m black -l79 . | ||
-flake8 --ignore E251,E266,W391 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
# data/jobs.txt | ||
|
||
|
||
|
||
first_contact;last_contact;poc_name;company;notes;active;url;title | ||
20230123;20230201;Fred Smythe; Some Great Place, LLC; linux, ansible, python; y; https://example.com/r12345; Senior Automation Engineer | ||
|
||
20230101; 20230101; Jason Jayson; Can't read resume, Inc; Windows server, powershell; n; https://whocares.com; Winderz admin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
# data/pocs.txt | ||
name;phone;email;first_contact;last_contact | ||
Fred Smythe; 555.555.1212; fred@example.com; Example, Inc ; 20230123; 20202102 | ||
Jayne Johnson; 123.456.7890; jj@otherexample.com; Other Recruiter, LLC; 20221212; 20221212 | ||
|
||
|
||
Jason Jayson; br-549; jay@whocares.com; Whocares, Inc; 20230101; 20230101 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.