diff options
author | Lane Kolbly <lane.kolbly@ni.com> | 2020-10-08 17:03:11 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-10-15 16:00:54 -0500 |
commit | 0167ad7608adb170970458b19735738808f0c5c8 (patch) | |
tree | 85427c21ca1d3d3c7222a56087c3488fdae49e6e /host/tests/CMakeLists.txt | |
parent | c484b79a7672d6c5d0886199955b015d1b4bc387 (diff) | |
download | uhd-0167ad7608adb170970458b19735738808f0c5c8.tar.gz uhd-0167ad7608adb170970458b19735738808f0c5c8.tar.bz2 uhd-0167ad7608adb170970458b19735738808f0c5c8.zip |
uhd_images_downloader: Add environment variable for http auth
This allows the image downloader to download files from restricted sources
using HTTP basic auth, specifying the credentials in the UHD_IMAGES_USER and
UHD_IMAGES_PASSWORD environment variables:
```
UHD_IMAGES_USER=lane UHD_IMAGES_PASSWORD=MyS3cretPassword uhd_images_downloader.py
```
Diffstat (limited to 'host/tests/CMakeLists.txt')
-rw-r--r-- | host/tests/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/tests/CMakeLists.txt b/host/tests/CMakeLists.txt index 19d6bd23c..99f4e5eaf 100644 --- a/host/tests/CMakeLists.txt +++ b/host/tests/CMakeLists.txt @@ -72,6 +72,7 @@ set(pytest_sources pyranges_test.py verify_fbs_test.py pychdr_parse_test.py + uhd_image_downloader_test.py ) #turn each test cpp file into an executable with an int main() function |