Skip to content

Commit

Permalink
unpin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagu committed Mar 26, 2024
1 parent ae143fc commit c3a9d44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 56 deletions.
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,11 @@ devenv: .venv ## create a python virtual environment with tools to dev, run and
@echo "To activate the virtual environment, run 'source $</bin/activate'"


requirements: devenv ## runs pip-tools to compile dependencies
# freezes requirements
pip-compile requirements/test.in --resolver=backtracking --output-file requirements/test.txt


.PHONY: install-test
install-test: ## install dependencies for testing
pip install -r requirements/test.txt
pip install -r requirements/test.in
pip list --verbose

.PHONY: tests-dev
tests-dev: ## run tests in development mode
Expand Down
49 changes: 0 additions & 49 deletions requirements/test.txt

This file was deleted.

3 changes: 1 addition & 2 deletions scripts/ci_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ IFS=$'\n\t'
install() {
make .venv
source .venv/bin/activate
pip install -r requirements/test.in
pip list --verbose
make install-test
}

test() {
Expand Down

0 comments on commit c3a9d44

Please sign in to comment.