Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

start using proxyspy #131

Merged
merged 2 commits into from
Feb 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
source $CONDA/etc/profile.d/conda.sh
conda install conda-build
conda build conda.recipe --no-test
conda build conda.recipe
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we've reduce the tests in the conda recipe to basic imports so we might as well leave them on

mv $CONDA/conda-bld .
- name: Upload build artifacts
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
Expand Down
20 changes: 7 additions & 13 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,15 @@ requirements:

test:
requires:
- pip
- conda
- pytest
- pytest-cov
source_files:
- tests
imports:
- anaconda_anon_usage
- anaconda_anon_usage.patch
- anaconda_anon_usage.tokens
commands:
- export ANACONDA_ANON_USAGE_DEBUG=1
- export PYTHONUNBUFFERED=1
- conda create -n testchild1 --yes
- conda create -n testchild2 --yes
- conda info
- conda info --envs
- python -m anaconda_anon_usage.install --status # [variant=="patch"]
- pytest -v tests/unit
- python tests/integration/test_config.py
- pip check
- conda info | grep -q "user-agent.* aau/"

about:
home: https://github.com/Anaconda-Platform/anaconda-anon-usage
Expand Down
Loading
Loading