BookmarkSubscribeRSS Feed
yabwon
Amethyst | Level 16

Hey SAS-C,

Just FYI.

Bart

 

SAS Packages Framework, version 20251017

Available as usual at: https://github.com/yabwon/SAS_PACKAGES

 

This release introduces new parameters, created on request of Ryo Nakaya.


Changes:

  • Two new parameters in the %generatePackage() macro:

    • workInTestResults= - Indicates if WORK directories for test sessions should be located in the same place as results. The default value: 0 means "do not do this". Possible values are 0 and 1.
    • testWorkPath= - Points a location where tests sessions work directories should be stored. By default it is null what means that a sub-directory of the main SAS session WORK is used. When in use a sub-directory for every developer's test is created in the location pointed by the parameter. Takes precedence over workInTestResults=.

    If those parameters are in use, the test.tests_summary data set has extra variable pointing to location of every user test.

  • Documentation updated.


Examples:

Generate package and save tests results and work directories:

%let _TP_ = /the/project/path;

%generatePackage( 
  filesLocation  = &_TP_./packageFiles
 ,testResults    = &_TP_./testResults
 ,testWorkPath   = &_TP_./testWorkPath
)

proc print data=test.tests_summary;
run;
 
 
_______________
Polish SAS Users Group: www.polsug.com and communities.sas.com/polsug

"SAS Packages: the way to share" at SGF2020 Proceedings (the latest version), GitHub Repository, and YouTube Video.
Hands-on-Workshop: "Share your code with SAS Packages"
"My First SAS Package: A How-To" at SGF2021 Proceedings

SAS Ballot Ideas: one: SPF in SAS, two, and three
SAS Documentation



hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 0 replies
  • 80 views
  • 2 likes
  • 1 in conversation