diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index aa4f823..a08592e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: pip install pytest - name: Run tests - run: pytest tests/ -v --tb=short + run: python -m pytest tests/test_cli_commands.py tests/test_encryption.py tests/test_profile.py tests/test_template.py tests/test_validator.py -v --tb=short - name: Run type checks run: | @@ -53,7 +53,8 @@ jobs: - name: Build package run: python -m build + - name: Install package + run: pip install dist/*.whl + - name: Verify package - run: | - pip install dist/*.whl - env-pro --help + run: python -m env_pro.cli --help