Skip to content

Commit

Permalink
fix: move enterTest to top-level
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmolony committed Apr 8, 2024
1 parent f39d959 commit 5ef0591
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions examples/python-django/devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@ in
'';
};

scripts = {
enterTest.exec = ''
wait_for_port ${db_port}
python manage.py test
'';
};
enterTest = ''
wait_for_port ${db_port}
python manage.py test
'';

}

0 comments on commit 5ef0591

Please sign in to comment.